From c38bc3cc062887a153532308853e25415431edf2 Mon Sep 17 00:00:00 2001 From: vinhha Date: Sat, 9 May 2020 14:07:20 +0700 Subject: [PATCH] fix(tree): assign fullpath to current node by fullpath of new node if current node the same new node --- tree.go | 1 + 1 file changed, 1 insertion(+) diff --git a/tree.go b/tree.go index b687ec43..8b2ce03d 100644 --- a/tree.go +++ b/tree.go @@ -260,6 +260,7 @@ walk: panic("handlers are already registered for path '" + fullPath + "'") } n.handlers = handlers + n.fullPath = fullPath return } }