summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-02-22 16:48:53 +0100
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-02-22 16:48:53 +0100
commit776cefc7deb553081a260371b631aaa641f46c54 (patch)
treebcda99319cb7a55e87840899e0b35a1fe5380214 /module/plugins/hoster
parentMerge pull request #11 from stickell/stable (diff)
parentChange from https:// to http:// for api.reload.cc requests (SSL not supported... (diff)
downloadpyload-776cefc7deb553081a260371b631aaa641f46c54.tar.xz
Merge pull request #12 from irrenhaus/stable
Change from https:// to http:// for api.reload.cc requests
Diffstat (limited to 'module/plugins/hoster')
-rw-r--r--module/plugins/hoster/ReloadCc.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/ReloadCc.py b/module/plugins/hoster/ReloadCc.py
index 6edce3b14..7dc6d9bb6 100644
--- a/module/plugins/hoster/ReloadCc.py
+++ b/module/plugins/hoster/ReloadCc.py
@@ -6,7 +6,7 @@ from module.network.HTTPRequest import BadHeader
class ReloadCc(Hoster):
__name__ = "ReloadCc"
- __version__ = "0.3"
+ __version__ = "0.4"
__type__ = "hoster"
__description__ = """Reload.Cc hoster plugin"""
@@ -47,7 +47,7 @@ class ReloadCc(Hoster):
query_params.update(dict(pwd=data['password']))
try:
- answer = self.load("https://api.reload.cc/dl", get=query_params)
+ answer = self.load("http://api.reload.cc/dl", get=query_params)
except BadHeader, e:
if e.code == 400:
self.fail("The URI is not supported by Reload.cc.")