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
Because the path parameters are not encoded, passing values containing '/' or '?' will result in the destination path becoming unintended. I guess we shoulld encode the path parameters using encodeURIComponent.
Because the path parameters are not encoded, passing values containing '/' or '?' will result in the destination path becoming unintended. I guess we shoulld encode the path parameters using encodeURIComponent.
Steps To Reproduce
The current behavior
request to /get/book/foo/bar
The expected behavior
request to /get/book/foo%2Fbar
The text was updated successfully, but these errors were encountered: