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
c.Path() is meant to be return path that handler was registered to i.e. /api/users/:id. Previously in cases of 404/405 it was filled with c.Request().URL.Path value and that caused problems knowing if handler/middleware chain that is currently being executed will end with "actual" route of something that Router added as replacement for 404/405
middleware echo.Context Lost Path
v4.9.1 is correct
v4.10.2 is not correct;
Expected behaviour
c.Path() Get correct request Path
Actual behaviour
c.Path() Get ""
Steps to reproduce
see example code
Working code to debug
The text was updated successfully, but these errors were encountered: