Use HTTPS for webservice.fanart.tv

@see https://www.filebot.net/forums/viewtopic.php?f=6&t=5329
This commit is contained in:
Reinhard Pointner 2017-09-17 21:49:56 +07:00
parent ae9384a580
commit 5973562825
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ public class FanartTVClient implements Datasource, ArtworkProvider {
public URL getResource(String path) throws Exception {
// e.g. http://webservice.fanart.tv/v3/movies/17645?api_key=6fa42b0ef3b5f3aab6a7edaa78675ac2
return new URL("http://webservice.fanart.tv/v3/" + path + "?api_key=" + apikey);
return new URL("https://webservice.fanart.tv/v3/" + path + "?api_key=" + apikey);
}
@Override