Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion router.go
Original file line number Diff line number Diff line change
Expand Up @@ -692,7 +692,7 @@ func (r *Router) Find(method, path string, c Context) {

// update indexes/search in case we need to backtrack when no handler match is found
paramIndex++
searchIndex += +len(search)
searchIndex += len(search)
search = ""

if h := currentNode.findMethod(method); h != nil {
Expand Down
Loading