mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 19:08:18 -07:00
solve dark pane overlay when playing next track
This commit is contained in:
parent
9677981344
commit
e705fb7598
@ -1731,7 +1731,7 @@ define(['events', 'datetime', 'appSettings', 'itemHelper', 'pluginManager', 'pla
|
||||
|
||||
var maxBitrate = params.MaxStreamingBitrate || self.getMaxStreamingBitrate(player);
|
||||
|
||||
var currentPlayOptions = currentItem.playOptions || {};
|
||||
var currentPlayOptions = currentItem.playOptions || getDefaultPlayOptions();
|
||||
|
||||
getPlaybackInfo(player, apiClient, currentItem, deviceProfile, maxBitrate, ticks, true, currentMediaSource.Id, audioStreamIndex, subtitleStreamIndex, liveStreamId, params.EnableDirectPlay, params.EnableDirectStream, params.AllowVideoStreamCopy, params.AllowAudioStreamCopy).then(function (result) {
|
||||
|
||||
@ -2698,7 +2698,7 @@ define(['events', 'datetime', 'appSettings', 'itemHelper', 'pluginManager', 'pla
|
||||
|
||||
if (newItem) {
|
||||
|
||||
var newItemPlayOptions = newItem.playOptions || {};
|
||||
var newItemPlayOptions = newItem.playOptions || getDefaultPlayOptions();
|
||||
|
||||
playInternal(newItem, newItemPlayOptions, function () {
|
||||
setPlaylistState(newItem.PlaylistItemId, newItemIndex);
|
||||
@ -2803,7 +2803,7 @@ define(['events', 'datetime', 'appSettings', 'itemHelper', 'pluginManager', 'pla
|
||||
|
||||
console.log('playing next track');
|
||||
|
||||
var newItemPlayOptions = newItemInfo.item.playOptions || {};
|
||||
var newItemPlayOptions = newItemInfo.item.playOptions || getDefaultPlayOptions();
|
||||
|
||||
playInternal(newItemInfo.item, newItemPlayOptions, function () {
|
||||
setPlaylistState(newItemInfo.item.PlaylistItemId, newItemInfo.index);
|
||||
@ -2826,7 +2826,7 @@ define(['events', 'datetime', 'appSettings', 'itemHelper', 'pluginManager', 'pla
|
||||
|
||||
if (newItem) {
|
||||
|
||||
var newItemPlayOptions = newItem.playOptions || {};
|
||||
var newItemPlayOptions = newItem.playOptions || getDefaultPlayOptions();
|
||||
newItemPlayOptions.startPositionTicks = 0;
|
||||
|
||||
playInternal(newItem, newItemPlayOptions, function () {
|
||||
@ -2997,7 +2997,7 @@ define(['events', 'datetime', 'appSettings', 'itemHelper', 'pluginManager', 'pla
|
||||
var player = this;
|
||||
setCurrentPlayerInternal(player);
|
||||
|
||||
var playOptions = item.playOptions || {};
|
||||
var playOptions = item.playOptions || getDefaultPlayOptions();
|
||||
var isFirstItem = playOptions.isFirstItem;
|
||||
var fullscreen = playOptions.fullscreen;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user