fixed #3404 2022-11-23

This commit is contained in:
hktalent 2022-11-23 20:22:05 +08:00 committed by Bo-Yi Wu
parent 3f5b0afa2a
commit 0fd88d12be
No known key found for this signature in database

View File

@ -182,7 +182,9 @@ func (c *Context) FullPath() string {
func (c *Context) Next() {
c.index++
for c.index < int8(len(c.handlers)) {
if nil != c.handlers[c.index] {
c.handlers[c.index](c)
}
c.index++
}
}