diff options
author | Stefano <l.stickell@yahoo.it> | 2013-09-07 20:20:06 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2013-09-07 20:32:42 +0200 |
commit | a5bb67198b33937ecef3bb99de46bd0204b3d8f4 (patch) | |
tree | 349584adb038610d1f3cfff5d57f2db8988ddb72 /pyload/plugins | |
parent | New crypter: FilestubeCom (diff) | |
download | pyload-a5bb67198b33937ecef3bb99de46bd0204b3d8f4.tar.xz |
FastshareCz: Fixed #253
(cherry picked from commit 5996269acaf33ade1eae532bca09f5a80b04699b)
Diffstat (limited to 'pyload/plugins')
-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 b44d55a2d..47ecda65a 100644 --- a/pyload/plugins/hoster/FastshareCz.py +++ b/pyload/plugins/hoster/FastshareCz.py @@ -27,7 +27,7 @@ class FastshareCz(SimpleHoster): __name__ = "FastshareCz" __type__ = "hoster" __pattern__ = r"http://(?:\w*\.)?fastshare.cz/\d+/.+" - __version__ = "0.15" + __version__ = "0.16" __description__ = """FastShare.cz""" __author_name__ = ("zoidberg", "stickell") @@ -35,7 +35,7 @@ class FastshareCz(SimpleHoster): FILE_OFFLINE_PATTERN = ur'<td align=center>Tento soubor byl smazán' FILE_URL_REPLACEMENTS = [('#.*', '')] - FREE_URL_PATTERN = ur'<form method=post action=(/free/.*?)><b>Stáhnout FREE.*?<img src="([^"]*)">' + FREE_URL_PATTERN = r'action=(/free/.*?)>\s*<img src="([^"]*)"><br' PREMIUM_URL_PATTERN = r'(http://data\d+\.fastshare\.cz/download\.php\?id=\d+\&[^\s\"\'<>]+)' NOT_ENOUGH_CREDIC_PATTERN = "Nem.te dostate.n. kredit pro sta.en. tohoto souboru" |