summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortjpcc <tjp@ctrl-c.club>2023-10-09 10:29:18 -0600
committertjpcc <tjp@ctrl-c.club>2023-10-09 10:29:18 -0600
commitc38b7ad69d738281e6569e447e8d3e634097d9a4 (patch)
treed90450fb20f876dc0fc63c567137e9037fc2c10f
parent64b06db74da3bb77c7bd703bf9124fed83c47d7f (diff)
fix for Router.Mount()v1.4.1
-rw-r--r--router.go9
1 files changed, 7 insertions, 2 deletions
diff --git a/router.go b/router.go
index 7cf3142..dfa936e 100644
--- a/router.go
+++ b/router.go
@@ -86,9 +86,14 @@ func (r *Router) Mount(prefix string, subrouter *Router) {
prefix = strings.TrimSuffix(prefix, "/")
for _, subroute := range subrouter.tree.Routes() {
- r.Route(path.Join(prefix, subroute.Pattern), subroute.Value)
- if subroute.Pattern == "/" {
+ fullroute := path.Join(prefix, subroute.Pattern)
+ if strings.HasSuffix(subroute.Pattern, "/") {
+ fullroute = fullroute + "/"
+ }
+ r.Route(fullroute, subroute.Value)
+ if subroute.Pattern == "/" || subroute.Pattern == "" {
r.Route(prefix, subroute.Value)
+ r.Route(prefix+"/", subroute.Value)
}
}
}