From 924a5fd9007828509375373b7e8e686bc6437a68 Mon Sep 17 00:00:00 2001 From: Henrique Dias Date: Sat, 12 Sep 2015 14:16:15 +0100 Subject: [PATCH] fix 404 --- hugo.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hugo.go b/hugo.go index 6a3aac64..2427313e 100644 --- a/hugo.go +++ b/hugo.go @@ -30,7 +30,7 @@ func (h handler) ServeHTTP(w http.ResponseWriter, r *http.Request) (int, error) return a.ServeHTTP(w, r) } - return 200, nil + return h.Next.ServeHTTP(w, r) } func (a adminHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) (int, error) {