From 20f823850d88e1e0a8b73dfe07da74fc22ef2586 Mon Sep 17 00:00:00 2001 From: root Date: Sun, 22 Nov 2020 07:06:42 +0000 Subject: [PATCH] removing lower case conversion of paths and parameters --- core/utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/utils.go b/core/utils.go index 0d819b4..f6782a7 100644 --- a/core/utils.go +++ b/core/utils.go @@ -137,7 +137,7 @@ func DecodeChars(s string) string { `\u002f`, "/", `\u0026`, "&", ) - s = replacer.Replace(strings.ToLower(s)) + s = replacer.Replace(s) return s }