Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(FEC-10598): add streamId to PKAdOptions #77

Merged
merged 1 commit into from
Aug 12, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/ima-dai.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ class ImaDAI extends BasePlugin implements IAdsControllerProvider, IEngineDecora
_ignorePreroll: boolean;
_queue: ImaDAIEventQueue;
_firstPlay: boolean;
_streamId: string;

/**
* an object containing all delayed events from our SDK for IMA DAI events.
Expand Down Expand Up @@ -464,6 +465,7 @@ class ImaDAI extends BasePlugin implements IAdsControllerProvider, IEngineDecora

_onLoaded(event: Object): void {
const streamData = event.getStreamData();
this._streamId = streamData.streamId;
this.logger.debug('Stream loaded', streamData);
this._resolveLoad(streamData.url);
}
Expand Down Expand Up @@ -631,6 +633,7 @@ class ImaDAI extends BasePlugin implements IAdsControllerProvider, IEngineDecora
adOptions.bumper = false;
adOptions.inStream = true;
adOptions.linear = true;
adOptions.streamId = this._streamId;
return adOptions;
}

Expand Down