Skip to content

Commit

Permalink
fixed #3404 2022-11-23
Browse files Browse the repository at this point in the history
  • Loading branch information
hktalent committed Nov 23, 2022
1 parent 80cd679 commit 3aa6366
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion context.go
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,9 @@ func (c *Context) FullPath() string {
func (c *Context) Next() {
c.index++
for c.index < int8(len(c.handlers)) {
c.handlers[c.index](c)
if nil != c.handlers[c.index] {
c.handlers[c.index](c)
}
c.index++
}
}
Expand Down

0 comments on commit 3aa6366

Please sign in to comment.