Skip to content

Commit

Permalink
fix(Ads): Fix CS volume ad (shaka-project#5016)
Browse files Browse the repository at this point in the history
  • Loading branch information
avelad committed Feb 21, 2023
1 parent 1aee989 commit 492b5f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ads/client_side_ad_manager.js
Expand Up @@ -440,7 +440,7 @@ shaka.ads.ClientSideAdManager = class {
if (this.ad_.isLinear()) {
this.adContainer_.setAttribute('ad-active', 'true');
this.video_.pause();
this.ad_.setVolume(this.video_.muted ? 0 : 1);
this.ad_.setVolume(this.video_.muted ? 0 : this.video_.volume);
}
}

Expand Down

0 comments on commit 492b5f3

Please sign in to comment.