mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Avoid spoilers in SyncPlay
This commit is contained in:
parent
3b837b6468
commit
2b97a7912a
1 changed files with 6 additions and 0 deletions
|
@ -503,6 +503,12 @@ class PlaybackCore {
|
||||||
|
|
||||||
if (!lastCommand || lastCommand.Command !== 'Unpause' || this.isBuffering()) return;
|
if (!lastCommand || lastCommand.Command !== 'Unpause' || this.isBuffering()) return;
|
||||||
|
|
||||||
|
// Avoid spoilers by making sure that command item matches current playlist item.
|
||||||
|
// This check is needed when switching from one item to another.
|
||||||
|
const queueCore = this.manager.getQueueCore();
|
||||||
|
const currentPlaylistItem = queueCore.getCurrentPlaylistItemId();
|
||||||
|
if (lastCommand.PlaylistItemId !== currentPlaylistItem) return;
|
||||||
|
|
||||||
const { currentTime, currentPosition } = timeUpdateData;
|
const { currentTime, currentPosition } = timeUpdateData;
|
||||||
|
|
||||||
// Get current PositionTicks.
|
// Get current PositionTicks.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue