Skip to content

Commit

Permalink
set sessionInProgress to true regardless of DCR/DTVR config
Browse files Browse the repository at this point in the history
  • Loading branch information
wjoosen committed Aug 22, 2024
1 parent 0f55a07 commit 84afa8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nielsen/src/integration/NielsenHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -271,8 +271,8 @@ export class NielsenHandler {

private maybeSendPlayEvent(): void {
if (this.sessionInProgress || Number.isNaN(this.duration)) return;
this.sessionInProgress = true;
if (this.dtvrEnabled) {
this.sessionInProgress = true;
const metadataObject = {
channelName: this.player.src,
length: this.duration
Expand Down

0 comments on commit 84afa8d

Please sign in to comment.