Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/84ac69231229ecd29461777f687d13f7e5d62ac0
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
10 additions and
2 deletions
@ -5,6 +5,7 @@
using System ;
using System.Collections.Generic ;
using System.Linq ;
using System.Net.Http ;
using System.Threading ;
using System.Threading.Tasks ;
using MediaBrowser.Controller.Configuration ;
@ -679,8 +680,15 @@ namespace MediaBrowser.Providers.Manager
{
foreach ( var remoteImage in localItem . RemoteImages )
{
await ProviderManager . SaveImage ( item , remoteImage . url , remoteImage . type , null , cancellationToken ) . ConfigureAwait ( false ) ;
refreshResult . UpdateType | = ItemUpdateType . ImageUpdate ;
try
{
await ProviderManager . SaveImage ( item , remoteImage . url , remoteImage . type , null , cancellationToken ) . ConfigureAwait ( false ) ;
refreshResult . UpdateType | = ItemUpdateType . ImageUpdate ;
}
catch ( HttpRequestException ex )
{
Logger . LogError ( ex , "Could not save {ImageType} image: {Url}" , Enum . GetName ( remoteImage . type ) , remoteImage . url ) ;
}
}
if ( imageService . MergeImages ( item , localItem . Images ) )