Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/e58bf6b2be1c366f0fb705d60f1d242df7123386
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
8 additions and
0 deletions
@ -308,6 +308,11 @@ namespace MediaBrowser.Controller.Entities.TV
id . SeriesDisplayOrder = series . DisplayOrder ;
}
if ( Season is not null )
{
id . SeasonProviderIds = Season . ProviderIds ;
}
id . IsMissingEpisode = IsMissingEpisode ;
id . IndexNumberEnd = IndexNumberEnd ;
@ -12,10 +12,13 @@ namespace MediaBrowser.Controller.Providers
public EpisodeInfo ( )
{
SeriesProviderIds = new Dictionary < string , string > ( StringComparer . OrdinalIgnoreCase ) ;
SeasonProviderIds = new Dictionary < string , string > ( StringComparer . OrdinalIgnoreCase ) ;
}
public Dictionary < string , string > SeriesProviderIds { get ; set ; }
public Dictionary < string , string > SeasonProviderIds { get ; set ; }
public int? IndexNumberEnd { get ; set ; }
public bool IsMissingEpisode { get ; set ; }