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
I noticed that hexEscapeNonASCII() in net/http/http.go does not escape % character despite that function is using % as an escape character.
Since a pathname containing % character might be specified as a redirected path, I think that hexEscapeNonASCII() needs to also escape % character. But commit 6ca662c did not explain why we don't need to escape % character.