diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-10-04 15:26:11 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-10-04 15:26:11 +0200 |
commit | f2816deed4531ed6cf534be6b2dffd9adadf599d (patch) | |
tree | 384000610907e22af4b3602136b7a4dc8f86dd65 | |
parent | Added tag v0.4.8 for changeset e534c70d0e8c (diff) | |
download | pyload-f2816deed4531ed6cf534be6b2dffd9adadf599d.tar.xz |
hotfile premium fix
-rw-r--r-- | module/plugins/hoster/HotfileCom.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/module/plugins/hoster/HotfileCom.py b/module/plugins/hoster/HotfileCom.py index 2da443e29..96927a9fc 100644 --- a/module/plugins/hoster/HotfileCom.py +++ b/module/plugins/hoster/HotfileCom.py @@ -2,8 +2,6 @@ # -*- coding: utf-8 -*- import re -from time import time -from urllib import unquote from module.plugins.Hoster import Hoster from module.plugins.ReCaptcha import ReCaptcha @@ -34,7 +32,7 @@ class HotfileCom(Hoster): __name__ = "HotfileCom" __type__ = "hoster" __pattern__ = r"http://(www.)?hotfile\.com/dl/\d+/[0-9a-zA-Z]+/" - __version__ = "0.3" + __version__ = "0.31" __description__ = """Hotfile.com Download Hoster""" __author_name__ = ("sitacuisses","spoob","mkaay") __author_mail__ = ("sitacuisses@yhoo.de","spoob@pyload.org","mkaay@mkaay.de") @@ -48,7 +46,8 @@ class HotfileCom(Hoster): if self.account: self.multiDL = True - self.req.canContinue = True + self.resumeDownload = True + self.chunkLimit = -1 def apiCall(self, method, post, login=False): if not self.account and login: |