You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var myUri = new URI("https://google.com/a?b=c&d=e,f,g")
myUri.toString() // "https://google.com/a?b=c&d=e,f,g"
myUri.setSearch("new", "value")
myUri.toString() // "https://google.com/a?b=c&d=e%2Cf%2Cg&new=value"
Apparently during the buildQueryParameter functionality, we encode each parameter value thus causing ',' value to be encoded and not its original value
The text was updated successfully, but these errors were encountered:
Apparently during the buildQueryParameter functionality, we encode each parameter value thus causing ',' value to be encoded and not its original value
The text was updated successfully, but these errors were encountered: