diff options
author | Pedro Algarvio <pedro@algarvio.me> | 2012-01-28 20:40:17 +0100 |
---|---|---|
committer | Pedro Algarvio <pedro@algarvio.me> | 2012-01-28 20:40:17 +0100 |
commit | 8fde04777e98e421f24b8fda0ea2c62d46e12849 (patch) | |
tree | 6875c35cf1e651437c6bf0670c5f5d681e7a4fe4 /module/plugins/hoster | |
parent | update filepost (diff) | |
download | pyload-8fde04777e98e421f24b8fda0ea2c62d46e12849.tar.xz |
Update FileJungle for non existing files.
Diffstat (limited to 'module/plugins/hoster')
-rw-r--r-- | module/plugins/hoster/FilejungleCom.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hoster/FilejungleCom.py b/module/plugins/hoster/FilejungleCom.py index 7aa7eca37..dc36fa1d9 100644 --- a/module/plugins/hoster/FilejungleCom.py +++ b/module/plugins/hoster/FilejungleCom.py @@ -34,7 +34,7 @@ class FilejungleCom(SimpleHoster): __author_mail__ = ("zoidberg@mujmail.cz") FILE_INFO_PATTERN = r'<div id="file_name">(?P<N>[^<]+) <span class="filename_normal">\((?P<S>[0-9.]+) (?P<U>[kKMG])i?B\)</span></div>' - FILE_OFFLINE_PATTERN = r'class="error_msg_title"> Invalid or Deleted File. </div>' + FILE_OFFLINE_PATTERN = r'(This file is no longer available.</h1>|class="error_msg_title"> Invalid or Deleted File. </div>)' RECAPTCHA_KEY_PATTERN = r"var reCAPTCHA_publickey='([^']+)'" WAIT_TIME_PATTERN = r'<h1>Please wait for (\d+) seconds to download the next file\.</h1>' |