removed formatting dirctive as string builder is used - Closes #220

dev
Mzack9999 2020-10-11 20:59:37 +02:00
parent ed855c9224
commit 39fc9736d0
1 changed files with 1 additions and 3 deletions

View File

@ -99,9 +99,7 @@ func (e *HTTPExecuter) writeOutputHTTP(req *requests.HTTPRequest, resp *http.Res
builder.WriteString("] ")
}
// Escape the URL by replacing all % with %%
escapedURL := strings.ReplaceAll(URL, "%", "%%")
builder.WriteString(escapedURL)
builder.WriteString(URL)
// If any extractors, write the results
if len(extractorResults) > 0 {