Skip to content
New issue

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

Fix route().current() with encoded characters #668

Merged
merged 3 commits into from Oct 12, 2023

Conversation

bakerkretzmar
Copy link
Collaborator

This PR decodes the window location before trying to match it against route patterns. The issue here is that a URL like http://example.com/статистика, although it'll show up exactly like that in most browsers, is actually interpreted by the browser and by JavaScript as http://example.com/%D1%81%D1%82%D0%B0%D1%82%D0%B8%D1%81%D1%82%D0%B8%D0%BA%D0%B0, so that's what Ziggy sees too.

The fix in this PR does work, but I'm still a bit uneasy about it because I'm not sure what else it might affect unintentionally. Might add more tests or sit on it for a bit.

Fixes #665.

@bakerkretzmar bakerkretzmar self-assigned this Sep 15, 2023
@bakerkretzmar bakerkretzmar merged commit 9b11334 into main Oct 12, 2023
48 checks passed
@bakerkretzmar bakerkretzmar deleted the jbk/route-current-cyrillic-fix branch October 12, 2023 13:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

route().current() returns undefined for cyrillic letters inside URI
1 participant