diff options
author | 2015-06-08 04:02:12 +0200 | |
---|---|---|
committer | 2015-06-08 04:02:12 +0200 | |
commit | 6283481a29e49776703ce6688b3e4fcb5dd11bf2 (patch) | |
tree | ab61e993b8c8578f412272c69a07d14a9f7bbe72 /module/plugins/accounts/FreeWayMe.py | |
parent | [UploadedTo] Fixup (2) (diff) | |
download | pyload-6283481a29e49776703ce6688b3e4fcb5dd11bf2.tar.xz |
[FreeWayMe] Fixup
Diffstat (limited to 'module/plugins/accounts/FreeWayMe.py')
-rw-r--r-- | module/plugins/accounts/FreeWayMe.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/accounts/FreeWayMe.py b/module/plugins/accounts/FreeWayMe.py index 14b9f1e9a..7993a485e 100644 --- a/module/plugins/accounts/FreeWayMe.py +++ b/module/plugins/accounts/FreeWayMe.py @@ -7,7 +7,7 @@ from module.common.json_layer import json_loads class FreeWayMe(Account): __name__ = "FreeWayMe" __type__ = "account" - __version__ = "0.13" + __version__ = "0.14" __description__ = """FreeWayMe account plugin""" __license__ = "GPLv3" @@ -41,7 +41,7 @@ class FreeWayMe(Account): def getAccountStatus(self, user, req): - answer = req.load("https://www.free-way.me/ajax/jd.php", + answer = req.load("http://www.free-way.bz/ajax/jd.php", #@TODO: Revert to `https` in 0.4.10 get={"id": 4, "user": user, "pass": self.getAccountData(user)['password']}) self.logDebug("Login: %s" % answer) |