Skip to content

Commit

Permalink
Fixes a bug to resume the broadcast stream at the end of an ad break.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 671048787
  • Loading branch information
Interactive Media Ads Developer Relations authored and IMA Developer Relations committed Sep 4, 2024
1 parent 89e67b5 commit c162fea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hbbtv/application.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ var HbbTVApp = function() {

debugView.log('HbbTVApp: App loaded');
this.videoPlayer = new VideoPlayer();
this.videoPlayer.setOnAdPodEnded(this.resumeBroadcast().bind(this));
this.videoPlayer.setOnAdPodEnded(this.resumeBroadcast.bind(this));

} catch (e) {
debugView.log('HbbTVApp: No HbbTV device detected.');
Expand Down

0 comments on commit c162fea

Please sign in to comment.