crawler: accept more meta redirects
continuous-integration/drone/push Build is passing Details

master
pictuga 2022-02-01 23:32:49 +01:00
parent 4d64afe9cb
commit b65272daab
1 changed files with 1 additions and 1 deletions

View File

@ -425,7 +425,7 @@ class HTTPRefreshHandler(BaseHandler):
def http_response(self, req, resp):
if 200 <= resp.code < 300:
if resp.headers.get('refresh'):
regex = r'(?i)^(?P<delay>[0-9]+)\s*;\s*url=(["\']?)(?P<url>.+)\2$'
regex = r'(?i)^(?P<delay>[0-9]+)\s*;\s*url\s*=\s*(["\']?)(?P<url>.+)\2$'
match = re.search(regex, resp.headers.get('refresh'))
if match: