Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/361dedc314d959db13cd2e18801f0f4353db7849
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
11 additions and
2 deletions
@ -51,8 +51,17 @@ namespace MediaBrowser.Server.Implementations.Library.Resolvers
{
var filename = Path . GetFileNameWithoutExtension ( path ) ? ? string . Empty ;
return ! IgnoreFiles . Contains ( filename , StringComparer . OrdinalIgnoreCase )
& & imageProcessor . SupportedInputFormats . Contains ( ( Path . GetExtension ( path ) ? ? string . Empty ) . TrimStart ( '.' ) , StringComparer . OrdinalIgnoreCase ) ;
if ( IgnoreFiles . Contains ( filename , StringComparer . OrdinalIgnoreCase ) )
{
return false ;
}
if ( IgnoreFiles . Any ( i = > filename . IndexOf ( "-" + i , StringComparison . OrdinalIgnoreCase ) ! = - 1 ) )
{
return false ;
}
return imageProcessor . SupportedInputFormats . Contains ( ( Path . GetExtension ( path ) ? ? string . Empty ) . TrimStart ( '.' ) , StringComparer . OrdinalIgnoreCase ) ;
}
}