diff --git a/lib/utils/har.py b/lib/utils/har.py index 5b0111711..0dfe2a693 100644 --- a/lib/utils/har.py +++ b/lib/utils/har.py @@ -144,7 +144,7 @@ class Response: altered = raw comment = "" - if altered.startswith("HTTP response ["): + if altered.startswith("HTTP response [") or altered.startswith("HTTP redirect ["): io = StringIO.StringIO(raw) first_line = io.readline() parts = cls.extract_status.search(first_line)