Fix OMDb timeout issues

This commit is contained in:
Reinhard Pointner 2018-07-12 16:54:51 +07:00
parent c72bd9938b
commit 422e36c2aa
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ public class OMDbClient implements MovieIdentificationService {
}
public URL getResource(String file) throws Exception {
return new URL("http://www.omdbapi.com/" + file);
return new URL("https://private.omdbapi.com/" + file);
}
public Map<String, String> getMovieInfo(Integer i, String t, String y, boolean tomatoes) throws Exception {