From 751797fbd58a9587a460ed132c4bef1295e17594 Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Mon, 18 Sep 2017 10:18:42 +0700 Subject: [PATCH] TheTVDB rewrites HTTP to HTTPS nowadays --- source/net/filebot/web/TheTVDBClient.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/net/filebot/web/TheTVDBClient.java b/source/net/filebot/web/TheTVDBClient.java index 1560a806..085becfe 100644 --- a/source/net/filebot/web/TheTVDBClient.java +++ b/source/net/filebot/web/TheTVDBClient.java @@ -281,7 +281,7 @@ public class TheTVDBClient extends AbstractEpisodeListProvider implements Artwor @Override public URI getEpisodeListLink(SearchResult searchResult) { - return URI.create("http://www.thetvdb.com/?tab=seasonall&id=" + searchResult.getId()); + return URI.create("https://www.thetvdb.com/?tab=seasonall&id=" + searchResult.getId()); } @Override @@ -305,7 +305,7 @@ public class TheTVDBClient extends AbstractEpisodeListProvider implements Artwor // TheTVDB API v2 does not have a dedicated banner mirror try { - return new URL("http://thetvdb.com/banners/" + path); + return new URL("https://thetvdb.com/banners/" + path); } catch (Exception e) { throw new IllegalArgumentException(path, e); }