summaryrefslogtreecommitdiffstats
path: root/module/plugins/accounts/OverLoadMe.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/accounts/OverLoadMe.py')
-rw-r--r--module/plugins/accounts/OverLoadMe.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/module/plugins/accounts/OverLoadMe.py b/module/plugins/accounts/OverLoadMe.py
index 82f4d9240..e7e1b71e1 100644
--- a/module/plugins/accounts/OverLoadMe.py
+++ b/module/plugins/accounts/OverLoadMe.py
@@ -16,9 +16,9 @@ class OverLoadMe(Account):
def loadAccountInfo(self, user, req):
data = self.getAccountData(user)
- html = req.load("https://api.over-load.me/account.php",
+ html = self.load("https://api.over-load.me/account.php",
get={'user': user,
- 'auth': data['password']}).strip()
+ 'auth': data['password']}, req=req).strip()
data = json_loads(html)
self.logDebug(data)
@@ -31,9 +31,9 @@ class OverLoadMe(Account):
def login(self, user, data, req):
- jsondata = req.load("https://api.over-load.me/account.php",
+ jsondata = self.load("https://api.over-load.me/account.php",
get={'user': user,
- 'auth': data['password']}).strip()
+ 'auth': data['password']}, req=req).strip()
data = json_loads(jsondata)