summaryrefslogtreecommitdiffstats
path: root/module/plugins/accounts/AlldebridCom.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-06-06 05:33:38 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-06-06 05:33:38 +0200
commit049298dbdbff33918454b03a3b072f418d47af97 (patch)
treec517dd205b9709eba77bc33d3f8f8e1ff0e3cc41 /module/plugins/accounts/AlldebridCom.py
parent[HighWayMe] Cleanup (diff)
downloadpyload-049298dbdbff33918454b03a3b072f418d47af97.tar.xz
Use SSL when login account
Diffstat (limited to 'module/plugins/accounts/AlldebridCom.py')
-rw-r--r--module/plugins/accounts/AlldebridCom.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/accounts/AlldebridCom.py b/module/plugins/accounts/AlldebridCom.py
index d09086907..2d42b9c5c 100644
--- a/module/plugins/accounts/AlldebridCom.py
+++ b/module/plugins/accounts/AlldebridCom.py
@@ -38,7 +38,7 @@ class AlldebridCom(Account):
#Get expiration date from API
except Exception:
data = self.getAccountData(user)
- html = req.load("http://www.alldebrid.com/api.php",
+ html = req.load("https://www.alldebrid.com/api.php",
get={'action': "info_user", 'login': user, 'pw': data['password']})
self.logDebug(html)
@@ -51,7 +51,7 @@ class AlldebridCom(Account):
def login(self, user, data, req):
- html = req.load("http://www.alldebrid.com/register/",
+ html = req.load("https://www.alldebrid.com/register/",
get={'action' : "login",
'login_login' : user,
'login_password': data['password']},