diff options
| author | 2015-06-09 14:27:17 +0200 | |
|---|---|---|
| committer | 2015-06-09 14:27:17 +0200 | |
| commit | 6faa98072d3bae3d3f2cbf5f7dfa2c9de61da87e (patch) | |
| tree | 6b6157bb7b699a896ed6acd129d7af9cf3421b11 /module/plugins/hoster/UploadedTo.py | |
| parent | Fix https://github.com/pyload/pyload/issues/1472 (diff) | |
| download | pyload-6faa98072d3bae3d3f2cbf5f7dfa2c9de61da87e.tar.xz | |
[SimpleHoster] preload referer to False
Diffstat (limited to 'module/plugins/hoster/UploadedTo.py')
| -rw-r--r-- | module/plugins/hoster/UploadedTo.py | 8 | 
1 files changed, 2 insertions, 6 deletions
| diff --git a/module/plugins/hoster/UploadedTo.py b/module/plugins/hoster/UploadedTo.py index 187653c2d..cb8440687 100644 --- a/module/plugins/hoster/UploadedTo.py +++ b/module/plugins/hoster/UploadedTo.py @@ -32,6 +32,7 @@ class UploadedTo(SimpleHoster):      OFFLINE_PATTERN      = r'>Page not found'      TEMP_OFFLINE_PATTERN = r'<title>uploaded\.net - Maintenance' +    LINK_FREE_PATTERN    = r"url:\s*'(.+?)'"      LINK_PREMIUM_PATTERN = r'<div class="tfree".*\s*<form method="post" action="(.+?)"'      WAIT_PATTERN     = r'Current waiting period: <span>(\d+)' @@ -77,12 +78,7 @@ class UploadedTo(SimpleHoster):                                post={'recaptcha_challenge_field': challenge,                                      'recaptcha_response_field' : response}) -        if "type:'download'" in self.html: -            try: -                self.link = re.search("url:\s*'(.+?)'", self.html).group(1) -            except Exception: -                pass - +        super(UploadedTo, self).handleFree(pyfile)          self.checkErrors() | 
