-
Notifications
You must be signed in to change notification settings - Fork 7
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-8097): adsRenderingSettings aren’t applied #50
Conversation
@@ -454,7 +454,7 @@ export default class Ima extends BasePlugin { | |||
this._sdk.settings.setPlayerVersion(this.config.playerVersion); | |||
this._sdk.settings.setVpaidAllowed(true); | |||
this._sdk.settings.setVpaidMode(this._sdk.ImaSdkSettings.VpaidMode.ENABLED); | |||
if (this.config.setDisableCustomPlaybackForIOS10Plus === 'boolean') { | |||
if (typeof this.config.setDisableCustomPlaybackForIOS10Plus === 'boolean') { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@odedhutzler
Although this is a good fix, how this is related to the adsRenderingSettings?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
U r right @dan-ziv, added a fix for undefined instead of null on IMA adsRenderingSettings.
Please update your request for changes
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@odedhutzler I think we can add tests for this - please check
Description of the Changes
Fix conditional check for IMA AdsRenderingSettings object.
CheckLists