diff --git a/gin.go b/gin.go index 35b6b5e2..bc12265a 100644 --- a/gin.go +++ b/gin.go @@ -377,7 +377,7 @@ func (engine *Engine) handleHTTPRequest(c *Context) { if engine.HandleMethodNotAllowed { for _, tree := range engine.trees { if tree.method != httpMethod { - if handlers, _, _ := tree.root.getValue(path, nil, unescape); handlers != nil { + if handlers, _, _, _ := tree.root.getValue(path, nil, unescape); handlers != nil { c.handlers = engine.allNoMethod serveError(c, http.StatusMethodNotAllowed, default405Body) return