summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/FastixRu.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/hoster/FastixRu.py')
-rw-r--r--module/plugins/hoster/FastixRu.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/hoster/FastixRu.py b/module/plugins/hoster/FastixRu.py
index 9e7736647..cceabda53 100644
--- a/module/plugins/hoster/FastixRu.py
+++ b/module/plugins/hoster/FastixRu.py
@@ -28,15 +28,15 @@ class FastixRu(MultiHoster):
def handle_premium(self, pyfile):
- self.html = self.load("http://fastix.ru/api_v2/",
+ self.data = self.load("http://fastix.ru/api_v2/",
get={'apikey': self.account.get_data('apikey'),
'sub' : "getdirectlink",
'link' : pyfile.url})
- data = json.loads(self.html)
+ data = json.loads(self.data)
self.log_debug("Json data", data)
- if "error\":true" in self.html:
+ if "error\":true" in self.data:
self.offline()
else:
self.link = data['downloadlink']