Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/f2cba352e58f5d52693875365fdd400ad7c11863
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
3 deletions
@ -1917,14 +1917,14 @@ namespace Emby.Server.Implementations.Library
_logger . LogWarning ( "Cannot get image index for {ImagePath}" , img . Path ) ;
continue ;
}
catch ( InvalidOperationException)
catch ( Exception ex ) when ( ex is InvalidOperationException | | ex is IO Exception)
{
_logger . LogWarning ( "Cannot fetch image from {ImagePath}" , img . Path ) ;
_logger . LogWarning ( ex , "Cannot fetch image from {ImagePath}" , img . Path ) ;
continue ;
}
catch ( HttpRequestException ex )
{
_logger . LogWarning ( "Cannot fetch image from {ImagePath}. Http status code: {HttpStatus}" , img . Path , ex . StatusCode ) ;
_logger . LogWarning ( ex , "Cannot fetch image from {ImagePath}. Http status code: {HttpStatus}" , img . Path , ex . StatusCode ) ;
continue ;
}
}