diff options
author | zapp-brannigan <fuerst.reinje@web.de> | 2014-10-17 17:03:04 +0200 |
---|---|---|
committer | zapp-brannigan <fuerst.reinje@web.de> | 2014-10-17 17:03:04 +0200 |
commit | c860958e4ae4ab326ac4d024afbf13617e9292d5 (patch) | |
tree | c7fbff1e27a7e326fa2e17b1aa8b2c6afa9b07e9 | |
parent | Fix trafficleft size in some account plugins (diff) | |
download | pyload-c860958e4ae4ab326ac4d024afbf13617e9292d5.tar.xz |
Update ZippyshareCom.py
The current version can not detect the filename, download is not working:
17.10.2014 16:43:23 DEBUG ZippyshareCom: FILE NAME: <img style="margin-left: 10px;" src="/fileName?key=82680550&size=small" alt="file name"> FILE SIZE: 209998315
-rw-r--r-- | module/plugins/hoster/ZippyshareCom.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/ZippyshareCom.py b/module/plugins/hoster/ZippyshareCom.py index 29a23353f..6144132f9 100644 --- a/module/plugins/hoster/ZippyshareCom.py +++ b/module/plugins/hoster/ZippyshareCom.py @@ -11,7 +11,7 @@ from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo class ZippyshareCom(SimpleHoster): __name__ = "ZippyshareCom" __type__ = "hoster" - __version__ = "0.51" + __version__ = "0.52" __pattern__ = r'(?P<HOST>http://www\d{0,2}\.zippyshare\.com)/v(?:/|iew\.jsp.*key=)(?P<KEY>\d+)' @@ -20,7 +20,7 @@ class ZippyshareCom(SimpleHoster): __authors__ = [("Walter Purcaro", "vuolter@gmail.com")] - FILE_NAME_PATTERN = r'>Name:.+?">(?P<N>.+?)<' + FILE_NAME_PATTERN = r'var exam1x = .+ \+ "/(?P<N>.+)";' FILE_SIZE_PATTERN = r'>Size:.+?">(?P<S>[\d.,]+) (?P<U>[\w^_]+)' OFFLINE_PATTERN = r'>File does not exist on this server<' |