diff options
| author | 2015-04-10 03:32:41 +0200 | |
|---|---|---|
| committer | 2015-04-10 03:32:41 +0200 | |
| commit | b92e851691faa9f1f8af5226c77a80c21f55b30e (patch) | |
| tree | b32e636ffa9edd3c935e6dde7edff09bb7888f66 /module/plugins/hoster/DepositfilesCom.py | |
| parent | [RestartSlow] Remove (temp) (diff) | |
| download | pyload-b92e851691faa9f1f8af5226c77a80c21f55b30e.tar.xz | |
[DepositfilesCom] Update
Diffstat (limited to 'module/plugins/hoster/DepositfilesCom.py')
| -rw-r--r-- | module/plugins/hoster/DepositfilesCom.py | 10 | 
1 files changed, 3 insertions, 7 deletions
| diff --git a/module/plugins/hoster/DepositfilesCom.py b/module/plugins/hoster/DepositfilesCom.py index 48b325b48..cc24e351e 100644 --- a/module/plugins/hoster/DepositfilesCom.py +++ b/module/plugins/hoster/DepositfilesCom.py @@ -11,7 +11,7 @@ from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo  class DepositfilesCom(SimpleHoster):      __name__    = "DepositfilesCom"      __type__    = "hoster" -    __version__ = "0.54" +    __version__ = "0.55"      __pattern__ = r'https?://(?:www\.)?(depositfiles\.com|dfiles\.(eu|ru))(/\w{1,3})?/files/(?P<ID>\w+)'      __config__  = [("use_premium", "bool", "Use premium account if available", True)] @@ -28,7 +28,7 @@ class DepositfilesCom(SimpleHoster):      OFFLINE_PATTERN = r'<span class="html_download_api-not_exists"></span>'      NAME_REPLACEMENTS = [(r'\%u([0-9A-Fa-f]{4})', lambda m: unichr(int(m.group(1), 16))), -                              (r'.*<b title="(?P<N>.+?)".*', "\g<N>")] +                         (r'.*<b title="(?P<N>.+?)".*', "\g<N>")]      URL_REPLACEMENTS  = [(__pattern__ + ".*", "https://dfiles.eu/files/\g<ID>")]      COOKIES = [("dfiles.eu", "lang_current", "en")] @@ -52,8 +52,7 @@ class DepositfilesCom(SimpleHoster):          params = {'fid': m.group(1)}          self.logDebug("FID: %s" % params['fid']) -        self.setWait(60) -        self.wait() +        self.checkErrors()          recaptcha = ReCaptcha(self)          captcha_key = recaptcha.detect_key() @@ -68,9 +67,6 @@ class DepositfilesCom(SimpleHoster):          m = re.search(self.LINK_FREE_PATTERN, self.html)          if m: -            if 'response' in params: -                self.correctCaptcha() -              self.link = unquote(m.group(1)) | 
