From 1718a70d8a4da7cc6af882c558843b45aa853b7a Mon Sep 17 00:00:00 2001 From: Jan-Lukas Else Date: Mon, 22 Nov 2021 17:23:39 +0100 Subject: [PATCH] Small fix --- http.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http.go b/http.go index f57df02..5c294b1 100644 --- a/http.go +++ b/http.go @@ -204,7 +204,7 @@ func (a *goBlog) buildRouter() (http.Handler, error) { // Favicon if !hasStaticPath("favicon.ico") { - r.With(cacheLoggedIn, a.cacheMiddleware).Get("/favicon.ico", a.serve404) + r.With(a.cacheMiddleware).Get("/favicon.ico", a.serve404) } r.NotFound(a.servePostsAliasesRedirects())