From 182123c988beb28454cd293118cb3d54fca786e0 Mon Sep 17 00:00:00 2001 From: Yadunand Prem Date: Tue, 19 Nov 2024 16:47:32 -0500 Subject: [PATCH] fix: accidental write twice --- site/router.go | 1 - 1 file changed, 1 deletion(-) 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) } }) }