Skip to content

Commit

Permalink
Merge pull request #27 from rayhan0x01/patch-1
Browse files Browse the repository at this point in the history
removing lower case conversion of paths and parameters
  • Loading branch information
j3ssie authored Nov 27, 2020
2 parents 656e12f + 20f8238 commit 7b01017
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ func DecodeChars(s string) string {
`\u002f`, "/",
`\u0026`, "&",
)
s = replacer.Replace(strings.ToLower(s))
s = replacer.Replace(s)
return s
}

Expand Down

0 comments on commit 7b01017

Please sign in to comment.