diff options
author | AndroKev <neureither.kevin@gmail.com> | 2013-11-02 20:05:52 +0100 |
---|---|---|
committer | AndroKev <neureither.kevin@gmail.com> | 2013-11-02 20:05:52 +0100 |
commit | a3686cc3851b64eab7597422e66bc8e5b9d54120 (patch) | |
tree | 52595439b2a52738ab68746834e3e3cea4695531 /module/plugins/accounts/RealdebridCom.py | |
parent | Deleted the wildcard (diff) | |
parent | New crypter: FreetexthostCom (diff) | |
download | pyload-a3686cc3851b64eab7597422e66bc8e5b9d54120.tar.xz |
Merge remote-tracking branch 'upstream/stable' into stable
test
Diffstat (limited to 'module/plugins/accounts/RealdebridCom.py')
-rw-r--r-- | module/plugins/accounts/RealdebridCom.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/accounts/RealdebridCom.py b/module/plugins/accounts/RealdebridCom.py index 6cac5d0bb..a9980b088 100644 --- a/module/plugins/accounts/RealdebridCom.py +++ b/module/plugins/accounts/RealdebridCom.py @@ -5,7 +5,7 @@ from module.plugins.Account import Account class RealdebridCom(Account): __name__ = "RealdebridCom" - __version__ = "0.42" + __version__ = "0.43" __type__ = "account" __description__ = """Real-Debrid.com account plugin""" __author_name__ = ("Devirex, Hazzard") @@ -14,7 +14,7 @@ class RealdebridCom(Account): def loadAccountInfo(self, user, req): if self.pin_code: return {"premium": False} - page = req.load("http://real-debrid.com/api/account.php") + page = req.load("https://real-debrid.com/api/account.php") xml = dom.parseString(page) account_info = {"validuntil": int(xml.getElementsByTagName("expiration")[0].childNodes[0].nodeValue), "trafficleft": -1} |