Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/fe99800bde4b17aa634a9c7955590f17bd611263
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
8 additions and
4 deletions
@ -135,7 +135,7 @@ namespace Emby.Server.Implementations.Images
protected virtual IEnumerable < string > GetStripCollageImagePaths ( BaseItem primaryItem , IEnumerable < BaseItem > items )
{
var useBackdrop = primaryItem is CollectionFolder ;
var useBackdrop = primaryItem is CollectionFolder | | primaryItem is UserView ;
return items
. Select ( i = >
{
@ -84,16 +84,20 @@ namespace Emby.Server.Implementations.Images
} ) . GroupBy ( x = > x . Id )
. Select ( x = > x . First ( ) ) ;
List < BaseItem > returnItems ;
if ( isUsingCollectionStrip )
{
return items
returnItems = items
. Where ( i = > i . HasImage ( ImageType . Primary ) | | i . HasImage ( ImageType . Thumb ) )
. ToList ( ) ;
returnItems . Shuffle ( ) ;
return returnItems ;
}
return items
returnItems = items
. Where ( i = > i . HasImage ( ImageType . Primary ) )
. ToList ( ) ;
returnItems . Shuffle ( ) ;
return returnItems ;
}
protected override bool Supports ( BaseItem item )