diff options
author | valdi74 <informatyk74@interia.pl> | 2016-09-02 00:01:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-02 00:01:31 +0200 |
commit | ee61eb1003435fa7d2fc2e9c787cc69e1329c365 (patch) | |
tree | 8bd8868e1f3053935bed1ba586965ecbede7b178 | |
parent | [CatShareNet] fix #2576 (diff) | |
download | pyload-ee61eb1003435fa7d2fc2e9c787cc69e1329c365.tar.xz |
Update FileSharkPl.py
Solves error "Plugin may be out of date"
-rw-r--r-- | module/plugins/hoster/FileSharkPl.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/FileSharkPl.py b/module/plugins/hoster/FileSharkPl.py index 118ab8596..17db1e8a7 100644 --- a/module/plugins/hoster/FileSharkPl.py +++ b/module/plugins/hoster/FileSharkPl.py @@ -9,7 +9,7 @@ from module.plugins.internal.SimpleHoster import SimpleHoster class FileSharkPl(SimpleHoster): __name__ = "FileSharkPl" __type__ = "hoster" - __version__ = "0.18" + __version__ = "0.19" __status__ = "testing" __pattern__ = r'http://(?:www\.)?fileshark\.pl/pobierz/\d+/\w+' @@ -29,7 +29,7 @@ class FileSharkPl(SimpleHoster): SIZE_PATTERN = r'<p class="size-file">(.*?)<strong>(?P<S>\d+\.?\d*)\s(?P<U>\w+)</strong></p>' OFFLINE_PATTERN = r'(P|p)lik zosta. (usuni.ty|przeniesiony)' - LINK_FREE_PATTERN = r'<a rel="nofollow" href="(.*?)" class="btn-upload-free">' + LINK_FREE_PATTERN = r'<a rel="nofollow" href="(.*?)" class="btn-upload-free">' LINK_PREMIUM_PATTERN = r'<a rel="nofollow" href="(.*?)" class="btn-upload-premium">' WAIT_PATTERN = r'var timeToDownload = (\d+);' |