diff options
author | Stefano <l.stickell@yahoo.it> | 2013-12-13 23:16:23 +0100 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2013-12-16 17:06:20 +0100 |
commit | 555527fd4cfbc2a9de37f536caa50783ec863b5e (patch) | |
tree | 0e9ba19f2ad9cc63122f09e0ed892a80d87e634f | |
parent | Checksum: disabled by default (diff) | |
download | pyload-555527fd4cfbc2a9de37f536caa50783ec863b5e.tar.xz |
Fastshare: improved offline pattern.
Fixes #302
(cherry picked from commit 47e536383be4948538b70d5391db12225174981f)
-rw-r--r-- | pyload/plugins/hoster/FastshareCz.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/plugins/hoster/FastshareCz.py b/pyload/plugins/hoster/FastshareCz.py index 3e33d0fd9..fba704123 100644 --- a/pyload/plugins/hoster/FastshareCz.py +++ b/pyload/plugins/hoster/FastshareCz.py @@ -27,12 +27,12 @@ class FastshareCz(SimpleHoster): __name__ = "FastshareCz" __type__ = "hoster" __pattern__ = r"http://(?:\w*\.)?fastshare.cz/\d+/.+" - __version__ = "0.20" + __version__ = "0.21" __description__ = """FastShare.cz""" __author_name__ = ("zoidberg", "stickell") FILE_INFO_PATTERN = r'<h1 class="dwp">(?P<N>[^<]+)</h1>\s*<div class="fileinfo">\s*(?:Velikost|Size)\s*: (?P<S>[^,]+),' - FILE_OFFLINE_PATTERN = 'The file ?has been deleted' + FILE_OFFLINE_PATTERN = '(?:The file ?has been deleted|Requested page not found)' FILE_URL_REPLACEMENTS = [('#.*', '')] SH_COOKIES = [('fastshare.cz', 'lang', 'en')] |