summaryrefslogtreecommitdiffstats
path: root/module/plugins/accounts
diff options
context:
space:
mode:
authorGravatar stickell <l.stickell@yahoo.it> 2014-09-11 12:16:03 +0200
committerGravatar stickell <l.stickell@yahoo.it> 2014-09-11 12:16:03 +0200
commit22334b664ff2be7bbbe0627e4d65cf222bd29919 (patch)
treec53c89bce263b73358a5493b06bb78f0b1bbcad0 /module/plugins/accounts
parent[File4safe] distributing LINK_PATTERN (diff)
downloadpyload-22334b664ff2be7bbbe0627e4d65cf222bd29919.tar.xz
[MultiDebrid] renamed to Myfastline
Diffstat (limited to 'module/plugins/accounts')
-rw-r--r--module/plugins/accounts/MultiDebridCom.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/module/plugins/accounts/MultiDebridCom.py b/module/plugins/accounts/MultiDebridCom.py
index c731ce9ae..2a2d6d065 100644
--- a/module/plugins/accounts/MultiDebridCom.py
+++ b/module/plugins/accounts/MultiDebridCom.py
@@ -9,13 +9,11 @@ from module.common.json_layer import json_loads
class MultiDebridCom(Account):
__name__ = "MultiDebridCom"
__type__ = "account"
- __version__ = "0.01"
-
- __description__ = """Multi-debrid.com account plugin"""
+ __version__ = "0.02"
+ __description__ = """Myfastfile.com account plugin"""
__author_name__ = "stickell"
__author_mail__ = "l.stickell@yahoo.it"
-
def loadAccountInfo(self, user, req):
if 'days_left' in self.json_data:
validuntil = int(time() + self.json_data['days_left'] * 24 * 60 * 60)
@@ -24,8 +22,8 @@ class MultiDebridCom(Account):
self.logError('Unable to get account information')
def login(self, user, data, req):
- # Password to use is the API-Password written in http://multi-debrid.com/myaccount
- html = req.load("http://multi-debrid.com/api.php",
+ # Password to use is the API-Password written in http://myfastfile.com/myaccount
+ html = req.load("http://myfastfile.com/api.php",
get={"user": user, "pass": data['password']})
self.logDebug('JSON data: ' + html)
self.json_data = json_loads(html)