mirror of
https://github.com/mitb-archive/filebot
synced 2025-01-11 05:48:01 -05:00
TheTVDB rewrites HTTP to HTTPS nowadays
This commit is contained in:
parent
5973562825
commit
751797fbd5
@ -281,7 +281,7 @@ public class TheTVDBClient extends AbstractEpisodeListProvider implements Artwor
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public URI getEpisodeListLink(SearchResult searchResult) {
|
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
|
@Override
|
||||||
@ -305,7 +305,7 @@ public class TheTVDBClient extends AbstractEpisodeListProvider implements Artwor
|
|||||||
|
|
||||||
// TheTVDB API v2 does not have a dedicated banner mirror
|
// TheTVDB API v2 does not have a dedicated banner mirror
|
||||||
try {
|
try {
|
||||||
return new URL("http://thetvdb.com/banners/" + path);
|
return new URL("https://thetvdb.com/banners/" + path);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
throw new IllegalArgumentException(path, e);
|
throw new IllegalArgumentException(path, e);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user