diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-03-18 11:29:15 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-03-18 11:29:15 +0100 |
commit | b4f6063cea03f24968794847b7752d21ca25f89e (patch) | |
tree | bd24534e289d7aeae1c66664e27c1d756ef4c07b /module | |
parent | [RealdebridCom] Fix https://github.com/pyload/pyload/issues/1252 (diff) | |
download | pyload-b4f6063cea03f24968794847b7752d21ca25f89e.tar.xz |
[RealdebridCom] Revert 189f3cf05a30726850b3be82c2d7455d85d5e1b5 (fix https://github.com/pyload/pyload/issues/1260)
Diffstat (limited to 'module')
-rw-r--r-- | module/plugins/hoster/RealdebridCom.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/RealdebridCom.py b/module/plugins/hoster/RealdebridCom.py index d76c8bac1..01d8bbb5d 100644 --- a/module/plugins/hoster/RealdebridCom.py +++ b/module/plugins/hoster/RealdebridCom.py @@ -14,7 +14,7 @@ from module.utils import parseFileSize class RealdebridCom(MultiHoster): __name__ = "RealdebridCom" __type__ = "hoster" - __version__ = "0.66" + __version__ = "0.67" __pattern__ = r'https?://((?:www\.|s\d+\.)?real-debrid\.com/dl/|[\w^_]\.rdb\.so/d/)[\w^_]+' @@ -28,7 +28,7 @@ class RealdebridCom(MultiHoster): def handlePremium(self, pyfile): - data = json_loads(self.load("http://real-debrid.com/ajax/unrestrict.php", + data = json_loads(self.load("https://real-debrid.com/ajax/unrestrict.php", get={'lang' : "en", 'link' : pyfile.url, 'password': self.getPassword(), |