diff --git a/site/router.go b/site/router.go index d0c0977..2fbd847 100644 --- a/site/router.go +++ b/site/router.go @@ -26,7 +26,6 @@ func newRouter(handler *handler) http.Handler { h.ServeHTTP(w, r) } else { middlewares(handler, http.HandlerFunc(handler.NotFound)).ServeHTTP(w, r) - http.Error(w, "Boo", http.StatusNotFound) } }) }