summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/RealdebridCom.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/hoster/RealdebridCom.py')
-rw-r--r--module/plugins/hoster/RealdebridCom.py11
1 files changed, 6 insertions, 5 deletions
diff --git a/module/plugins/hoster/RealdebridCom.py b/module/plugins/hoster/RealdebridCom.py
index 8cf9ab8ce..41208df89 100644
--- a/module/plugins/hoster/RealdebridCom.py
+++ b/module/plugins/hoster/RealdebridCom.py
@@ -32,11 +32,12 @@ class RealdebridCom(MultiHoster):
def handle_premium(self, pyfile):
- data = json.loads(self.load("https://real-debrid.com/ajax/unrestrict.php",
- get={'lang' : "en",
- 'link' : pyfile.url,
- 'password': self.get_password(),
- 'time' : int(time.time() * 1000)}))
+ html = self.load("https://real-debrid.com/ajax/unrestrict.php",
+ get={'lang' : "en",
+ 'link' : pyfile.url,
+ 'password': self.get_password(),
+ 'time' : int(time.time() * 1000)})
+ data = json.loads(html)
self.log_debug("Returned Data: %s" % data)