fix(tree): assign fullpath to current node by fullpath of new node if current node the same new node

This commit is contained in:
vinhha 2020-05-09 14:07:20 +07:00
parent 82b284fd77
commit c38bc3cc06

View File

@ -260,6 +260,7 @@ walk:
panic("handlers are already registered for path '" + fullPath + "'") panic("handlers are already registered for path '" + fullPath + "'")
} }
n.handlers = handlers n.handlers = handlers
n.fullPath = fullPath
return return
} }
} }