diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-01-10 18:52:27 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-01-10 18:52:27 +0100 |
commit | 526cce7300f6a529f8aaf6a0deef276facd0c000 (patch) | |
tree | c227a0b35e423acd0e1349c5139479f52a9a2108 /module | |
parent | closed #491 mf, fix mu password (diff) | |
download | pyload-526cce7300f6a529f8aaf6a0deef276facd0c000.tar.xz |
real-debrid fix
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 62c09aaa8..4aed32614 100644 --- a/module/plugins/hoster/RealdebridCom.py +++ b/module/plugins/hoster/RealdebridCom.py @@ -9,7 +9,7 @@ from module.plugins.Hoster import Hoster class RealdebridCom(Hoster):
__name__ = "RealdebridCom"
- __version__ = "0.41"
+ __version__ = "0.42"
__type__ = "hoster"
__pattern__ = r"https?://.*real-debrid\..*"
@@ -45,7 +45,7 @@ class RealdebridCom(Hoster): if not password: password = ""
else: password = password[0]
- url = "http://real-debrid.com/ajax/deb.php?lang=en&sl=1&link=%s&passwort=%s" % (quote(pyfile.url, ""), password)
+ url = "http://real-debrid.com/lib/ajax/generator.php?lang=en&sl=1&link=%s&passwort=%s" % (quote(pyfile.url, ""), password)
page = self.load(url)
error = re.search(r'<span id="generation-error">(.*)</span>', page)
|