diff options
author | mkaay <mkaay@mkaay.de> | 2011-01-26 22:36:21 +0100 |
---|---|---|
committer | mkaay <mkaay@mkaay.de> | 2011-01-26 22:36:21 +0100 |
commit | 59865dcbfa2c60beef1538f1cf524775e3a23196 (patch) | |
tree | a0aa473f2c36db0b961459ab37f382522b3bdc9b /module/plugins | |
parent | First working version (diff) | |
download | pyload-59865dcbfa2c60beef1538f1cf524775e3a23196.tar.xz |
so.biz premium fix?
Diffstat (limited to 'module/plugins')
-rw-r--r-- | module/plugins/hoster/ShareonlineBiz.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hoster/ShareonlineBiz.py b/module/plugins/hoster/ShareonlineBiz.py index b54109fa8..f238c59bc 100644 --- a/module/plugins/hoster/ShareonlineBiz.py +++ b/module/plugins/hoster/ShareonlineBiz.py @@ -120,7 +120,7 @@ class ShareonlineBiz(Hoster): """ returns the absolute downloadable filepath """ if self.account: - return re.search('<b>The following link contains a ticket to a valid mirror for your desired file\.</b>.*?<a href="(.*?)" onmouseout', self.html, re.S).group(1) + return re.search('loadfilelink\.decode\("(.*?)"\);', self.html, re.S).group(1) file_url_pattern = r'var\sdl="(.*?)"' return b64decode(re.search(file_url_pattern, self.html).group(1)) |