Skip to content

Commit

Permalink
fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
M4tteoP committed Dec 1, 2023
1 parent 2e28c49 commit b6408e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/corazawaf/transaction.go
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ func (tx *Transaction) AddRequestHeader(key string, value string) {
}
case "cookie":
// Cookies use the same syntax as GET params but with semicolon (;) separator
// noUrlUnescape is used to avoid implicitly performing an URL decode on the cookies
// WithoutUnescape is used to avoid implicitly performing an URL decode on the cookies
values := urlutil.ParseQueryWithoutUnescape(value, ';')
for k, vr := range values {
for _, v := range vr {
Expand Down

0 comments on commit b6408e1

Please sign in to comment.