Merge pull request #1684 from nfnty/api
Use HTTPS for API requests: Fix missed URLs
This commit is contained in:
commit
8449ded793
|
@ -15,7 +15,7 @@ namespace MediaBrowser.Controller.Library
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The banner URL
|
/// The banner URL
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static readonly string BannerUrl = "http://www.thetvdb.com/banners/";
|
public static readonly string BannerUrl = "https://www.thetvdb.com/banners/";
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the air days.
|
/// Gets the air days.
|
||||||
|
|
|
@ -662,7 +662,7 @@ namespace MediaBrowser.XbmcMetadata.Parsers
|
||||||
{
|
{
|
||||||
if (!string.IsNullOrWhiteSpace(val))
|
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);
|
hasTrailer.AddTrailerUrl(val, false);
|
||||||
}
|
}
|
||||||
|
|
|
@ -889,7 +889,7 @@ namespace MediaBrowser.XbmcMetadata.Savers
|
||||||
{
|
{
|
||||||
// This is what xbmc expects
|
// 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=",
|
"plugin://plugin.video.youtube/?action=play_video&videoid=",
|
||||||
StringComparison.OrdinalIgnoreCase);
|
StringComparison.OrdinalIgnoreCase);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user