Skip to content

Commit

Permalink
fix(video-player-composite): fix isPlaying boolean (#10957)
Browse files Browse the repository at this point in the history
* fix(video-player-composite): fix isPlaying boolean

* chore(release): publish

 - @carbon/[email protected]
 - @carbon/[email protected]
 - @carbon/[email protected]
 - @carbon/[email protected]
 - @carbon/[email protected]
 - @carbon/[email protected]
 - @carbon/[email protected]
 - @carbon/[email protected]
 - @carbon/[email protected]
 - @carbon/[email protected]
 - @carbon/[email protected]
 - @carbon/[email protected]

---------

Co-authored-by: kennylam <[email protected]>
Co-authored-by: ibmdotcom-bot <[email protected]>
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
Co-authored-by: Anna Wen <[email protected]>
  • Loading branch information
5 people authored Sep 28, 2023
1 parent dab2a00 commit 78ee219
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ class DDSVideoPlayerComposite extends HybridRenderMixin(
Object.keys(embeddedVideos).forEach((videoId) => {
embeddedVideos[videoId].sendNotification('doPlay');
});
this.isPlaying = false;
this.isPlaying = true;
}

/**
Expand Down

0 comments on commit 78ee219

Please sign in to comment.