summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Stefano <l.stickell@yahoo.it> 2013-03-15 14:12:25 +0100
committerGravatar Stefano <l.stickell@yahoo.it> 2013-03-15 14:12:25 +0100
commitfd5ebe024e139acbe6a108fe4023f0a76a014336 (patch)
tree29637ff1e518073397842fab2079dfc39e553edb
parentMerge pull request #43 from 4Christopher/stable (diff)
downloadpyload-fd5ebe024e139acbe6a108fe4023f0a76a014336.tar.xz
SpeedLoadOrg: now premium downloads works
-rw-r--r--module/plugins/hoster/SpeedLoadOrg.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/module/plugins/hoster/SpeedLoadOrg.py b/module/plugins/hoster/SpeedLoadOrg.py
index 65eead5a5..32e7baf13 100644
--- a/module/plugins/hoster/SpeedLoadOrg.py
+++ b/module/plugins/hoster/SpeedLoadOrg.py
@@ -5,7 +5,7 @@ class SpeedLoadOrg(XFileSharingPro):
__name__ = "SpeedLoadOrg"
__type__ = "hoster"
__pattern__ = r"http://(www\.)?speedload\.org/(?P<ID>\w+)"
- __version__ = "1.00"
+ __version__ = "1.01"
__description__ = """Speedload.org hoster plugin"""
__author_name__ = ("stickell")
__author_mail__ = ("l.stickell@yahoo.it")
@@ -15,4 +15,7 @@ class SpeedLoadOrg(XFileSharingPro):
HOSTER_NAME = "speedload.org"
+ def handlePremium(self):
+ self.download(self.pyfile.url, post = self.getPostParameters())
+
getInfo = create_getInfo(SpeedLoadOrg)