-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Escaping colon does not work #2046
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
# for free
to join this conversation on GitHub.
Already have an account?
# 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: