Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/6cb82d6c936e47abc6e5c73d5d5a47801e7139e1
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
2 additions and
2 deletions
@ -1320,7 +1320,7 @@ namespace MediaBrowser.Server.Implementations.Library
public IEnumerable < BaseItem > GetItems ( InternalItemsQuery query , IEnumerable < string > parentIds )
{
var parents = parentIds . Select ( i = > GetItemById ( new Guid ( i ) ) ) . ToList( ) ;
var parents = parentIds . Select ( i = > GetItemById ( new Guid ( i ) ) ) . Where( i = > i ! = null ) . ToList( ) ;
SetTopParentIdsOrAncestors ( query , parents ) ;
@ -1329,7 +1329,7 @@ namespace MediaBrowser.Server.Implementations.Library
public QueryResult < BaseItem > GetItemsResult ( InternalItemsQuery query , IEnumerable < string > parentIds )
{
var parents = parentIds . Select ( i = > GetItemById ( new Guid ( i ) ) ) . ToList( ) ;
var parents = parentIds . Select ( i = > GetItemById ( new Guid ( i ) ) ) . Where( i = > i ! = null ) . ToList( ) ;
SetTopParentIdsOrAncestors ( query , parents ) ;