Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/dc73d044de83110c28b33000cf0d5d8628f3d99e
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
2 deletions
@ -112,9 +112,10 @@ namespace MediaBrowser.Providers.Plugins.Tmdb.TV
private async Task < List < Poster > > FetchImages ( Season item , string tmdbId , string language , CancellationToken cancellationToken )
{
await TmdbSeasonProvider . Current . EnsureSeasonInfo ( tmdbId , item . IndexNumber . GetValueOrDefault ( ) , language , cancellationToken ) . ConfigureAwait ( false ) ;
var seasonNumber = item . IndexNumber . GetValueOrDefault ( ) ;
await TmdbSeasonProvider . Current . EnsureSeasonInfo ( tmdbId , seasonNumber , language , cancellationToken ) . ConfigureAwait ( false ) ;
var path = TmdbSe ries Provider. Current . GetDataFilePath ( tmdbId , language ) ;
var path = TmdbSe ason Provider. Current . GetDataFilePath ( tmdbId , seasonNumber , language ) ;
if ( ! string . IsNullOrEmpty ( path ) )
{