fix(http): encode correct value for %3D (#9790)

This commit is contained in:
Florian Knop
2016-08-27 00:47:29 +02:00
committed by Victor Berchet
parent 6c77d7182a
commit 75553200c0
2 changed files with 3 additions and 3 deletions

View File

@ -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, '/');
}