diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-07-27 23:59:37 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-07-27 23:59:37 +0200 |
commit | 727ea6a066c43cd3c0b8d632fc36a0b300d5f179 (patch) | |
tree | 1e0ab4fa623b5e32d11372e4d464c30be0562b8b | |
parent | Fix https://github.com/pyload/pyload/pull/1571 (diff) | |
download | pyload-727ea6a066c43cd3c0b8d632fc36a0b300d5f179.tar.xz |
Fix https://github.com/pyload/pyload/pull/1552 (thx selaux)
-rw-r--r-- | module/plugins/hoster/ShareonlineBiz.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/ShareonlineBiz.py b/module/plugins/hoster/ShareonlineBiz.py index 01c245443..765c1a791 100644 --- a/module/plugins/hoster/ShareonlineBiz.py +++ b/module/plugins/hoster/ShareonlineBiz.py @@ -13,7 +13,7 @@ from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo class ShareonlineBiz(SimpleHoster): __name__ = "ShareonlineBiz" __type__ = "hoster" - __version__ = "0.54" + __version__ = "0.55" __status__ = "testing" __pattern__ = r'https?://(?:www\.)?(share-online\.biz|egoshare\.com)/(download\.php\?id=|dl/)(?P<ID>\w+)' @@ -52,7 +52,7 @@ class ShareonlineBiz(SimpleHoster): info['size'] = field[3] #: In bytes info['md5'] = field[4].strip().lower().replace("\n\n", "") #: md5 - elif field[1] in ("DELETED", "NOT FOUND"): + elif field[1] in ("DELETED", "NOTFOUND"): info['status'] = 1 except IndexError: |