Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/f04627e1e88fc8a7a5361a054daec102436b83cf
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
16 additions and
13 deletions
@ -88,19 +88,22 @@ namespace MediaBrowser.Providers.TV
var seriesDataPath = await TvdbSeriesProvider . Current . EnsureSeriesInfo ( seriesProviderIds , series . GetPreferredMetadataLanguage ( ) , cancellationToken ) . ConfigureAwait ( false ) ;
var path = Path . Combine ( seriesDataPath , "banners.xml" ) ;
try
{
return GetImages ( path , item . GetPreferredMetadataLanguage ( ) , seasonNumber , cancellationToken ) ;
}
catch ( FileNotFoundException )
if ( ! string . IsNullOrWhiteSpace ( seriesDataPath ) )
{
// No tvdb data yet. Don't blow up
}
catch ( DirectoryNotFoundException )
{
// No tvdb data yet. Don't blow up
var path = Path . Combine ( seriesDataPath , "banners.xml" ) ;
try
{
return GetImages ( path , item . GetPreferredMetadataLanguage ( ) , seasonNumber , cancellationToken ) ;
}
catch ( FileNotFoundException )
{
// No tvdb data yet. Don't blow up
}
catch ( DirectoryNotFoundException )
{
// No tvdb data yet. Don't blow up
}
}
}
@ -46,7 +46,7 @@ namespace MediaBrowser.XbmcMetadata.Parsers
}
if ( ! string . IsNullOrWhiteSpace ( tvdbId ) )
{
item . SetProviderId ( MetadataProviders . Tv com , tvdbId ) ;
item . SetProviderId ( MetadataProviders . Tv db , tvdbId ) ;
}
break ;
}