Use HTTPS for API requests: Fix missed URLs
This commit is contained in:
parent
69622a74a8
commit
0ace5b38c3
|
@ -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 = "https://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=", "https://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("https://www.youtube.com/watch?v=",
|
||||
"plugin://plugin.video.youtube/?action=play_video&videoid=",
|
||||
StringComparison.OrdinalIgnoreCase);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user