Browse Source

Potential fix for #20

pull/139/head
bign8 10 years ago committed by Nate Woods
parent
commit
c329c7d193
  1. 19
      mux.go

19
mux.go

@ -59,6 +59,12 @@ func (r *Router) Match(req *http.Request, match *RouteMatch) bool {
return true return true
} }
} }
// Closest match for a router (includes sub-routers)
if r.NotFoundHandler != nil {
match.Handler = r.NotFoundHandler
return true
}
return false return false
} }
@ -89,10 +95,7 @@ func (r *Router) ServeHTTP(w http.ResponseWriter, req *http.Request) {
setCurrentRoute(req, match.Route) setCurrentRoute(req, match.Route)
} }
if handler == nil { if handler == nil {
handler = r.NotFoundHandler handler = http.NotFoundHandler()
if handler == nil {
handler = http.NotFoundHandler()
}
} }
if !r.KeepContext { if !r.KeepContext {
defer context.Clear(req) defer context.Clear(req)
@ -324,11 +327,15 @@ func CurrentRoute(r *http.Request) *Route {
} }
func setVars(r *http.Request, val interface{}) { func setVars(r *http.Request, val interface{}) {
context.Set(r, varsKey, val) if val != nil {
context.Set(r, varsKey, val)
}
} }
func setCurrentRoute(r *http.Request, val interface{}) { func setCurrentRoute(r *http.Request, val interface{}) {
context.Set(r, routeKey, val) if val != nil {
context.Set(r, routeKey, val)
}
} }
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------

Loading…
Cancel
Save