Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/7c9aa63382d3d0e4a3e3285732f469026b98aa07
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
11 additions and
2 deletions
@ -424,9 +424,14 @@ namespace Emby.Server.Implementations.Session
var nowPlayingQueue = info . NowPlayingQueue ;
if ( nowPlayingQueue ! = null )
if ( nowPlayingQueue ? . Length > 0 )
{
session . NowPlayingQueue = nowPlayingQueue ;
var itemIds = nowPlayingQueue . Select ( queue = > queue . Id ) . ToArray ( ) ;
session . NowPlayingQueueFullItems = _dtoService . GetBaseItemDtos (
_libraryManager . GetItemList ( new InternalItemsQuery { ItemIds = itemIds } ) ,
new DtoOptions ( true ) ) ;
}
}
@ -39,6 +39,8 @@ namespace MediaBrowser.Controller.Session
AdditionalUsers = Array . Empty < SessionUserInfo > ( ) ;
PlayState = new PlayerStateInfo ( ) ;
SessionControllers = Array . Empty < ISessionController > ( ) ;
NowPlayingQueue = Array . Empty < QueueItem > ( ) ;
NowPlayingQueueFullItems = Array . Empty < BaseItemDto > ( ) ;
}
public PlayerStateInfo PlayState { get ; set ; }
@ -219,7 +221,9 @@ namespace MediaBrowser.Controller.Session
}
}
public QueueItem [ ] NowPlayingQueue { get ; set ; }
public IReadOnlyList < QueueItem > NowPlayingQueue { get ; set ; }
public IReadOnlyList < BaseItemDto > NowPlayingQueueFullItems { get ; set ; }
public bool HasCustomDeviceName { get ; set ; }