fix: accidental write twice

This commit is contained in:
2024-11-19 16:47:32 -05:00
parent e0bd4fdead
commit 182123c988

View File

@@ -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)
}
})
}