mirror of
https://github.com/labstack/echo.git
synced 2024-11-24 08:22:21 +02:00
Remove group.Use registering Any routes that break other routes
Fixes #1657
This commit is contained in:
parent
151ed6b3f1
commit
f72eaa4253
4
group.go
4
group.go
@ -23,10 +23,6 @@ func (g *Group) Use(middleware ...MiddlewareFunc) {
|
||||
if len(g.middleware) == 0 {
|
||||
return
|
||||
}
|
||||
// Allow all requests to reach the group as they might get dropped if router
|
||||
// doesn't find a match, making none of the group middleware process.
|
||||
g.Any("", NotFoundHandler)
|
||||
g.Any("/*", NotFoundHandler)
|
||||
}
|
||||
|
||||
// CONNECT implements `Echo#CONNECT()` for sub-routes within the Group.
|
||||
|
Loading…
Reference in New Issue
Block a user