diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-07-05 21:17:33 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-07-05 21:17:33 +0200 |
commit | e63b0ad02c81cfde324f234e8990e6ab1f1447df (patch) | |
tree | 8c560a4feb896994829f70c1702a4c00444606f7 | |
parent | [SimpleCrypter] Added missed PAGES_PATTERN example (diff) | |
download | pyload-e63b0ad02c81cfde324f234e8990e6ab1f1447df.tar.xz |
[BayfilesCom] Fix https://github.com/pyload/pyload/issues/575
-rw-r--r-- | module/plugins/hoster/BayfilesCom.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/hoster/BayfilesCom.py b/module/plugins/hoster/BayfilesCom.py index 720603c4d..82dd11446 100644 --- a/module/plugins/hoster/BayfilesCom.py +++ b/module/plugins/hoster/BayfilesCom.py @@ -28,7 +28,7 @@ class BayfilesCom(SimpleHoster): __name__ = "BayfilesCom" __type__ = "hoster" __pattern__ = r'https?://(?:www\.)?bayfiles\.(com|net)/file/(?P<ID>[a-zA-Z0-9]+/[a-zA-Z0-9]+/[^/]+)' - __version__ = "0.06" + __version__ = "0.07" __description__ = """Bayfiles.com hoster plugin""" __author_name__ = ("zoidberg", "Walter Purcaro") __author_mail__ = ("zoidberg@mujmail.cz", "vuolter@gmail.com") @@ -53,7 +53,7 @@ class BayfilesCom(SimpleHoster): self.parseError('VARS') vfid, delay = found.groups() - response = json_loads(self.load('https://bayfiles.com/ajax_download', get={ + response = json_loads(self.load('http://bayfiles.com/ajax_download', get={ "_": time() * 1000, "action": "startTimer", "vfid": vfid}, decode=True)) @@ -63,7 +63,7 @@ class BayfilesCom(SimpleHoster): self.wait(int(delay)) - self.html = self.load('https://bayfiles.com/ajax_download', get={ + self.html = self.load('http://bayfiles.com/ajax_download', get={ "token": response['token'], "action": "getLink", "vfid": vfid}) |