-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Escaping colon does not work #2046
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
Comments
Yep, this is not working correctly and tests are wrong. Problem is that (code below) is not removing Lines 101 to 103 in 7bde9ae
In routes tree we have "/action/ws\:list" but it should be "/action/ws:list"
Probably something like that would fix this issue if i > 0 && path[i-1] == '\\' {
path = path[:i-1] + path[i:]
i--
lcpIndex--
continue
} we remove |
aldas
added a commit
to aldas/echo
that referenced
this issue
Dec 16, 2021
…tched to request path (fixes labstack#2046)
3 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Issue Description
The PR from #1988 doesn't seem to work.
Expected behaviour
should match routes
Actual behaviour
none of the routes are matched
Steps to reproduce
Code below
Working code to debug
Version/commit
4.6.1
The text was updated successfully, but these errors were encountered: