summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/FilerNet.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/hoster/FilerNet.py')
-rw-r--r--module/plugins/hoster/FilerNet.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/FilerNet.py b/module/plugins/hoster/FilerNet.py
index af755e0a6..37c88dec7 100644
--- a/module/plugins/hoster/FilerNet.py
+++ b/module/plugins/hoster/FilerNet.py
@@ -57,10 +57,10 @@ class FilerNet(SimpleHoster):
self.req.http.c.setopt(pycurl.FOLLOWLOCATION, 1)
if 'location' in self.req.http.header.lower():
- self.link = re.search(r'location: (\S+)', self.req.http.header, re.I).group(1)
self.captcha.correct()
+ self.link = re.search(r'location: (\S+)', self.req.http.header, re.I).group(1)
else:
- self.captcha.invalid()
+ self.retry_captcha()
getInfo = create_getInfo(FilerNet)