summaryrefslogtreecommitdiffstats
path: root/module/plugins/accounts/FreeWayMe.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/accounts/FreeWayMe.py')
-rw-r--r--module/plugins/accounts/FreeWayMe.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/accounts/FreeWayMe.py b/module/plugins/accounts/FreeWayMe.py
index 14b9f1e9a..66f93e0bb 100644
--- a/module/plugins/accounts/FreeWayMe.py
+++ b/module/plugins/accounts/FreeWayMe.py
@@ -1,13 +1,13 @@
# -*- coding: utf-8 -*-
-from module.plugins.Account import Account
+from module.plugins.internal.Account import Account
from module.common.json_layer import json_loads
class FreeWayMe(Account):
__name__ = "FreeWayMe"
__type__ = "account"
- __version__ = "0.13"
+ __version__ = "0.15"
__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)