1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

* use https for all requests (including login)

This commit is contained in:
Reinhard Pointner 2015-05-08 08:23:36 +00:00
parent c7925f9b50
commit 955547dcd8

View File

@ -331,9 +331,8 @@ public class OpenSubtitlesXmlRpc {
protected URL getXmlRpcUrl() {
try {
return new URL("http://api.opensubtitles.org/xml-rpc");
return new URL("https://api.opensubtitles.org/xml-rpc");
} catch (MalformedURLException e) {
// will never happen
throw new RuntimeException(e);
}
}