From 3de4e072b2928815d48d9682bb162d92d39d9eed Mon Sep 17 00:00:00 2001 From: debugtalk Date: Fri, 25 Feb 2022 12:14:16 +0800 Subject: [PATCH] fix: typo error --- runner.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runner.go b/runner.go index b834dd3e..f9f4a338 100644 --- a/runner.go +++ b/runner.go @@ -886,7 +886,7 @@ func shouldPrintBody(contentType string) bool { if strings.HasPrefix(contentType, "application/xml") { return true } - if strings.HasPrefix(contentType, "application/www-form-urlencoded") { + if strings.HasPrefix(contentType, "application/x-www-form-urlencoded") { return true } return false