1
0
mirror of https://github.com/mitb-archive/filebot synced 2025-03-10 06:20:27 -04:00

Update default banner mirror

This commit is contained in:
Reinhard Pointner 2019-05-02 03:03:15 +07:00
parent 64642a73b5
commit add37ae1dc

View File

@ -41,6 +41,14 @@ public class TheTVDBClient extends AbstractEpisodeListProvider implements Artwor
}
}
private static URL getBannerMirror() {
try {
return new URL(System.getProperty("net.filebot.TheTVDB.banner.url", "https://www.thetvdb.com/banners/"));
} catch (Exception e) {
throw new IllegalStateException(e);
}
}
private static final Locale DEFAULT_LOCALE = Locale.ENGLISH;
private final URL api;
@ -335,7 +343,7 @@ public class TheTVDBClient extends AbstractEpisodeListProvider implements Artwor
// TheTVDB API v2 does not have a dedicated banner mirror
try {
return new URL("https://thetvdb.com/banners/" + path);
return new URL(getBannerMirror(), path);
} catch (Exception e) {
throw new IllegalArgumentException(path, e);
}