From 39fc9736d0976c97ca09a97daba736c0461edecc Mon Sep 17 00:00:00 2001 From: Mzack9999 Date: Sun, 11 Oct 2020 20:59:37 +0200 Subject: [PATCH] removed formatting dirctive as string builder is used - Closes #220 --- v2/pkg/executer/output_http.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/v2/pkg/executer/output_http.go b/v2/pkg/executer/output_http.go index 12aeb7597..387b7a9ff 100644 --- a/v2/pkg/executer/output_http.go +++ b/v2/pkg/executer/output_http.go @@ -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 {