fix(http): encode correct value for %3D (#9790)
This commit is contained in:

committed by
Victor Berchet

parent
6c77d7182a
commit
75553200c0
@ -41,7 +41,7 @@ function standardEncoding(v: string): string {
|
||||
.replace(/%2C/gi, ',')
|
||||
.replace(/%3B/gi, ';')
|
||||
.replace(/%2B/gi, '+')
|
||||
.replace(/%3D/gi, ';')
|
||||
.replace(/%3D/gi, '=')
|
||||
.replace(/%3F/gi, '?')
|
||||
.replace(/%2F/gi, '/');
|
||||
}
|
||||
|
Reference in New Issue
Block a user