diff --git a/mux.go b/mux.go index a2cd193e..1f4836ae 100644 --- a/mux.go +++ b/mux.go @@ -112,9 +112,7 @@ func copyRouteConf(r routeConf) routeConf { } c.matchers = make([]matcher, 0, len(r.matchers)) - for _, m := range r.matchers { - c.matchers = append(c.matchers, m) - } + c.matchers = append(c.matchers, r.matchers...) return c }