From bb938a82b500e1c9a46888783ba267a2799d9f36 Mon Sep 17 00:00:00 2001 From: Nitzo Date: Thu, 25 Feb 2016 23:50:48 +0200 Subject: fix #2359 --- module/plugins/hoster/FilefactoryCom.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'module/plugins/hoster/FilefactoryCom.py') 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+' -- cgit v1.2.3