Backport pull request #7227 from jellyfin-web/release-10.11.z

Fix unpause and pause references in syncplay video player

Original-merge: 17a1e2e94c42511bd0250a34ed25ebb0f2681a02

Merged-by: thornbill <thornbill@users.noreply.github.com>

Backported-by: Joshua M. Boniface <joshua@boniface.me>
This commit is contained in:
PeachesMLG
2025-10-27 15:47:07 -04:00
committed by Joshua M. Boniface
parent e30d2a324e
commit ebf2e85af8
@@ -96,8 +96,8 @@ class HtmlVideoPlayer extends NoActivePlayer {
Events.off(this.player, 'playbackstart', this._onPlaybackStart);
Events.off(this.player, 'playbackstop', this._onPlaybackStop);
Events.off(this.player, 'unpause', this._onPlayerUnpause);
Events.off(this.player, 'pause', this._onPlayerPause);
Events.off(this.player, 'unpause', this._onUnpause);
Events.off(this.player, 'pause', this._onPause);
Events.off(this.player, 'timeupdate', this._onTimeUpdate);
Events.off(this.player, 'playing', this._onPlaying);
Events.off(this.player, 'waiting', this._onWaiting);