Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/bc3da4bbad3893c48bf7be6091d3e8fee7086327
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
8 additions and
5 deletions
@ -405,10 +405,13 @@ namespace MediaBrowser.Providers.Manager
else
{
var existing = item . GetImageInfo ( type , 0 ) ;
if ( existing ! = null & & ! _fileSystem . FileExists ( existing . Path ) )
if ( existing ! = null )
{
item . RemoveImage ( existing ) ;
changed = true ;
if ( existing . IsLocalFile & & ! _fileSystem . FileExists ( existing . Path ) )
{
item . RemoveImage ( existing ) ;
changed = true ;
}
}
}
}
@ -502,7 +505,7 @@ namespace MediaBrowser.Providers.Manager
return true ;
}
return tru e;
return fals e;
}
private void SaveImageStub ( IHasImages item , ImageType imageType , string url )
@ -1019,7 +1019,7 @@ namespace MediaBrowser.Providers.Manager
{
var folder = ( Folder ) child ;
await folder . ValidateChildren ( new Progress < double > ( ) , CancellationToken . None ). ConfigureAwait ( false ) ;
await folder . ValidateChildren ( new Progress < double > ( ) , CancellationToken . None , options , true ). ConfigureAwait ( false ) ;
}
}
}