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 }