Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/4d87927e41dd0c96518b24d7ae4efcd1d430004a
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
3 additions and
3 deletions
@ -15,7 +15,7 @@ namespace MediaBrowser.Controller.Library
/// <summary>
/// The banner URL
/// </summary>
public static readonly string BannerUrl = "http ://www.thetvdb.com/banners/";
public static readonly string BannerUrl = "http s ://www.thetvdb.com/banners/";
/// <summary>
/// Gets the air days.
@ -662,7 +662,7 @@ namespace MediaBrowser.XbmcMetadata.Parsers
{
if ( ! string . IsNullOrWhiteSpace ( val ) )
{
val = val . Replace ( "plugin://plugin.video.youtube/?action=play_video&videoid=" , "http ://www.youtube.com/watch?v=", StringComparison . OrdinalIgnoreCase ) ;
val = val . Replace ( "plugin://plugin.video.youtube/?action=play_video&videoid=" , "http s ://www.youtube.com/watch?v=", StringComparison . OrdinalIgnoreCase ) ;
hasTrailer . AddTrailerUrl ( val , false ) ;
}
@ -889,7 +889,7 @@ namespace MediaBrowser.XbmcMetadata.Savers
{
// This is what xbmc expects
return url . Replace ( "http ://www.youtube.com/watch?v=",
return url . Replace ( "http s ://www.youtube.com/watch?v=",
"plugin://plugin.video.youtube/?action=play_video&videoid=" ,
StringComparison . OrdinalIgnoreCase ) ;
}