diff --git a/source/net/filebot/web/TMDbClient.java b/source/net/filebot/web/TMDbClient.java index 7e108f9f..24bc57a6 100644 --- a/source/net/filebot/web/TMDbClient.java +++ b/source/net/filebot/web/TMDbClient.java @@ -308,8 +308,8 @@ public class TMDbClient implements MovieIdentificationService, ArtworkProvider { } try { - String mirror = (String) Cache.getCache(getName(), CacheType.Monthly).computeIfAbsent("configuration.base_url", it -> { - return getString(getMap(getConfiguration(), "images"), "base_url"); + String mirror = (String) Cache.getCache(getName(), CacheType.Monthly).computeIfAbsent("configuration.secure_base_url", it -> { + return getString(getMap(getConfiguration(), "images"), "secure_base_url"); }); return new URL(mirror + "original" + path); } catch (Exception e) {