diff options
author | GammaC0de <GammaC0de@users.noreply.github.com> | 2015-04-25 23:04:07 +0200 |
---|---|---|
committer | GammaC0de <GammaC0de@users.noreply.github.com> | 2015-04-25 23:04:07 +0200 |
commit | 1f5c090d4d7df29870b471a47dc7b29d809c62c9 (patch) | |
tree | 5277cee94b77d8a60f4ad9d85e795e0585dd97a9 | |
parent | Merge pull request #1369 from GammaC0de/GammaC0de-fix-UpleaCom (diff) | |
download | pyload-1f5c090d4d7df29870b471a47dc7b29d809c62c9.tar.xz |
Update UpleaCom.py
-rw-r--r-- | module/plugins/hoster/UpleaCom.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/module/plugins/hoster/UpleaCom.py b/module/plugins/hoster/UpleaCom.py index 039d2f552..65e0299ec 100644 --- a/module/plugins/hoster/UpleaCom.py +++ b/module/plugins/hoster/UpleaCom.py @@ -10,7 +10,7 @@ from module.plugins.internal.XFSHoster import XFSHoster, create_getInfo class UpleaCom(XFSHoster): __name__ = "UpleaCom" __type__ = "hoster" - __version__ = "0.07" + __version__ = "0.08" __pattern__ = r'https?://(?:www\.)?uplea\.com/dl/\w{15}' @@ -28,6 +28,7 @@ class UpleaCom(XFSHoster): PREMIUM_PATTERN = r'You need to have a Premium subscription to download this file' LINK_PATTERN = r'"(https?://\w+\.uplea\.com/anonym/.*?)"' + HOSTER_DOMAIN = "uplea.com" WAIT_PATTERN = r'timeText: ?([\d.]+),' STEP_PATTERN = r'<a href="(/step/.+)">' |