Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/a8d8c598caf543ea53dab9a84ec4cb0047dbc617?style=split&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
8 additions and
3 deletions
@ -48,7 +48,7 @@ namespace MediaBrowser.Controller.Providers.TV
case "filename" :
case "filename" :
{
{
string filename = reader . ReadElementContentAsString ( ) ;
var filename = reader . ReadElementContentAsString ( ) ;
if ( ! string . IsNullOrWhiteSpace ( filename ) )
if ( ! string . IsNullOrWhiteSpace ( filename ) )
{
{
@ -56,8 +56,13 @@ namespace MediaBrowser.Controller.Providers.TV
// even though it's actually using the metadata folder.
// even though it's actually using the metadata folder.
filename = Path . GetFileName ( filename ) ;
filename = Path . GetFileName ( filename ) ;
string seasonFolder = Path . GetDirectoryName ( item . Path ) ;
var seasonFolder = Path . GetDirectoryName ( item . Path ) ;
item . PrimaryImagePath = Path . Combine ( seasonFolder , "metadata" , filename ) ;
filename = Path . Combine ( seasonFolder , "metadata" , filename ) ;
if ( File . Exists ( filename ) )
{
item . PrimaryImagePath = filename ;
}
}
}
break ;
break ;
}
}