We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
/foo%2Fbar.txt
/foo/bar.txt
/foo%2Fbar.txt returns the same content with /foo/bar.txt. Is this intended?
sirv/packages/sirv/index.js
Line 171 in 886cc96
decodeURIComponent
decodeURI
refs vitejs/vite#8804
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
/foo%2Fbar.txt
returns the same content with/foo/bar.txt
.Is this intended?
Reproduction
Reason
sirv/packages/sirv/index.js
Line 171 in 886cc96
This is because
decodeURIComponent
is used instead ofdecodeURI
here.refs vitejs/vite#8804
The text was updated successfully, but these errors were encountered: