Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/8449ded79389a085ed68cf5c5353f8218cbe2e85
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 ) ;
}