diff options
author | 2016-02-25 22:50:48 +0100 | |
---|---|---|
committer | 2016-02-25 22:50:48 +0100 | |
commit | bb938a82b500e1c9a46888783ba267a2799d9f36 (patch) | |
tree | 66352f08bf016eb3b78d6486de54d8731c946a31 /module/plugins/hoster/FilefactoryCom.py | |
parent | [MediafireCom] Update (diff) | |
download | pyload-bb938a82b500e1c9a46888783ba267a2799d9f36.tar.xz |
fix #2359
Diffstat (limited to 'module/plugins/hoster/FilefactoryCom.py')
-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 e8f4204af..56b765049 100644 --- a/module/plugins/hoster/FilefactoryCom.py +++ b/module/plugins/hoster/FilefactoryCom.py @@ -13,7 +13,7 @@ def get_info(urls): m = re.search(r'Location: (.+)\r\n', h) if m and not re.match(m.group(1), FilefactoryCom.__pattern__): #: It's a direct link! Skipping - yield (url, 0, 3, url) + yield (url, 0, 7, url) else: #: It's a standard html page yield parse_fileInfo(FilefactoryCom, url, get_url(url)) @@ -22,7 +22,7 @@ def get_info(urls): class FilefactoryCom(SimpleHoster): __name__ = "FilefactoryCom" __type__ = "hoster" - __version__ = "0.62" + __version__ = "0.63" __status__ = "testing" __pattern__ = r'https?://(?:www\.)?filefactory\.com/(file|trafficshare/\w+)/\w+' |