diff options
author | Stefano <l.stickell@yahoo.it> | 2013-03-15 14:12:25 +0100 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2013-03-15 14:12:25 +0100 |
commit | fd5ebe024e139acbe6a108fe4023f0a76a014336 (patch) | |
tree | 29637ff1e518073397842fab2079dfc39e553edb | |
parent | Merge pull request #43 from 4Christopher/stable (diff) | |
download | pyload-fd5ebe024e139acbe6a108fe4023f0a76a014336.tar.xz |
SpeedLoadOrg: now premium downloads works
-rw-r--r-- | module/plugins/hoster/SpeedLoadOrg.py | 5 |
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) |