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/hoster/FreeWayMe.py | |
parent | [UploadedTo] Fixup (2) (diff) | |
download | pyload-6283481a29e49776703ce6688b3e4fcb5dd11bf2.tar.xz |
[FreeWayMe] Fixup
Diffstat (limited to 'module/plugins/hoster/FreeWayMe.py')
-rw-r--r-- | module/plugins/hoster/FreeWayMe.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/hoster/FreeWayMe.py b/module/plugins/hoster/FreeWayMe.py index 1cca24c3b..ac1fa549a 100644 --- a/module/plugins/hoster/FreeWayMe.py +++ b/module/plugins/hoster/FreeWayMe.py @@ -6,9 +6,9 @@ from module.plugins.internal.MultiHoster import MultiHoster, create_getInfo class FreeWayMe(MultiHoster): __name__ = "FreeWayMe" __type__ = "hoster" - __version__ = "0.16" + __version__ = "0.17" - __pattern__ = r'https://(?:www\.)?free-way\.me/.+' + __pattern__ = r'https?://(?:www\.)?free-way\.(bz|me)/.+' __config__ = [("use_premium", "bool", "Use premium account if available", True)] __description__ = """FreeWayMe multi-hoster plugin""" @@ -27,7 +27,7 @@ class FreeWayMe(MultiHoster): for _i in xrange(5): # try it five times - header = self.load("https://www.free-way.me/load.php", + header = self.load("http://www.free-way.bz/load.php", #@TODO: Revert to `https` in 0.4.10 get={'multiget': 7, 'url' : pyfile.url, 'user' : user, |