summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/ShareonlineBiz.py
diff options
context:
space:
mode:
authorGravatar godofdream <soilfiction@gmail.com> 2012-08-06 23:21:04 +0200
committerGravatar godofdream <soilfiction@gmail.com> 2012-08-06 23:21:04 +0200
commite048e22c3377ae19b6a5e2f9a59c4a12c2da7816 (patch)
tree8e5b795d0c3dd05ffe5022ea5fd360fca92cb4b1 /module/plugins/hoster/ShareonlineBiz.py
parentAdded DdlStorage-folder support - closed #609, #573 (diff)
downloadpyload-e048e22c3377ae19b6a5e2f9a59c4a12c2da7816.tar.xz
updated Serienjunkies, Shareonline - closed #571, #409
Diffstat (limited to 'module/plugins/hoster/ShareonlineBiz.py')
-rw-r--r--module/plugins/hoster/ShareonlineBiz.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/module/plugins/hoster/ShareonlineBiz.py b/module/plugins/hoster/ShareonlineBiz.py
index 187ee062d..b94389008 100644
--- a/module/plugins/hoster/ShareonlineBiz.py
+++ b/module/plugins/hoster/ShareonlineBiz.py
@@ -43,7 +43,7 @@ class ShareonlineBiz(Hoster):
__name__ = "ShareonlineBiz"
__type__ = "hoster"
__pattern__ = r"http://[\w\.]*?(share\-online\.biz|egoshare\.com)/(download.php\?id\=|dl/)[\w]+"
- __version__ = "0.30"
+ __version__ = "0.31"
__description__ = """Shareonline.biz Download Hoster"""
__author_name__ = ("spoob", "mkaay", "zoidberg")
__author_mail__ = ("spoob@pyload.org", "mkaay@mkaay.de", "zoidberg@mujmail.cz")
@@ -69,8 +69,9 @@ class ShareonlineBiz(Hoster):
check = self.checkDownload({"invalid" : re.compile("<strong>(This download ticket is.*?)</strong>"),
"error" : re.compile("(Es ist ein unbekannter Fehler aufgetreten|An unknown error has occurred)"),
- "cookie" : re.compile(r"<span class='udl'>Ihr Browser</span> verfügt leider nicht über einen gültigen <span class='udl'>Sitzungs Cookie</span>")})
- if check in ("invalid", "error", "cookie"):
+ "cookie" : re.compile(r"<span class='udl'>Ihr Browser</span> verfügt leider nicht über einen gültigen <span class='udl'>Sitzungs Cookie</span>"),
+ "login" : re.compile(r"<title>Share-Online"),})
+ if check in ("invalid", "error", "cookie", "login"):
self.logError(self.lastCheck.group(1))
if self.premium:
self.account.getAccountInfo(self.user, True)