mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Fix theme queue
Set play options for each item so that the playback manager doesn't change the fullscreen state for the next item.
This commit is contained in:
parent
ab71873ced
commit
7842eef4a6
1 changed files with 7 additions and 0 deletions
|
@ -22,6 +22,13 @@ function playThemeMedia(items, ownerId) {
|
||||||
return i.Id;
|
return i.Id;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
currentThemeItems.forEach((i) => {
|
||||||
|
i.playOptions = {
|
||||||
|
fullscreen: false,
|
||||||
|
enableRemotePlayers: false
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
playbackManager.play({
|
playbackManager.play({
|
||||||
items: currentThemeItems,
|
items: currentThemeItems,
|
||||||
fullscreen: false,
|
fullscreen: false,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue