We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97244f5 commit 8b63ee9Copy full SHA for 8b63ee9
1 file changed
lib/core/option.py
@@ -289,7 +289,7 @@ def _parseBurpLog(content):
289
line = line.strip('\r')
290
match = re.search(r"\A(%s) (.+) HTTP/[\d.]+\Z" % "|".join(getPublicTypeMembers(HTTPMETHOD, True)), line) if not method else None
291
292
- if len(line) == 0 and method and method != HTTPMETHOD.GET and data is None:
+ if len(line.strip()) == 0 and method and method != HTTPMETHOD.GET and data is None:
293
data = ""
294
params = True
295
0 commit comments