diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-05-08 16:46:47 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-05-08 16:46:47 +0200 |
commit | 91fa8cf8681566bed01a161d4f52498e940ab75a (patch) | |
tree | 887658f0e7559a9db78467791cb1a509e4180aa5 | |
parent | Merge pull request #1402 from GammaC0de/GammaC0de-BillionuploadsCom (diff) | |
parent | [FilefactoryCom] update OFFLINE_PATTERN (diff) | |
download | pyload-91fa8cf8681566bed01a161d4f52498e940ab75a.tar.xz |
Merge pull request #1401 from GammaC0de/GammaC0de-FilefactoryCom
[FilefactoryCom] update OFFLINE_PATTERN
-rw-r--r-- | module/plugins/hoster/FilefactoryCom.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/FilefactoryCom.py b/module/plugins/hoster/FilefactoryCom.py index 0a9d5e2cc..ea1a38b7a 100644 --- a/module/plugins/hoster/FilefactoryCom.py +++ b/module/plugins/hoster/FilefactoryCom.py @@ -20,7 +20,7 @@ def getInfo(urls): class FilefactoryCom(SimpleHoster): __name__ = "FilefactoryCom" __type__ = "hoster" - __version__ = "0.54" + __version__ = "0.55" __pattern__ = r'https?://(?:www\.)?filefactory\.com/(file|trafficshare/\w+)/\w+' __config__ = [("use_premium", "bool", "Use premium account if available", True)] @@ -32,7 +32,7 @@ class FilefactoryCom(SimpleHoster): INFO_PATTERN = r'<div id="file_name"[^>]*>\s*<h2>(?P<N>[^<]+)</h2>\s*<div id="file_info">\s*(?P<S>[\d.,]+) (?P<U>[\w^_]+) uploaded' - OFFLINE_PATTERN = r'<h2>File Removed</h2>|This file is no longer available' + OFFLINE_PATTERN = r'<h2>File Removed</h2>|This file is no longer available|Invalid Download Link' LINK_FREE_PATTERN = LINK_PREMIUM_PATTERN = r'"([^"]+filefactory\.com/get.+?)"' |