From 66968834fbbb283d15a2feeab2a943330269a594 Mon Sep 17 00:00:00 2001 From: Egor Date: Mon, 16 Feb 2026 18:25:20 -0800 Subject: [PATCH] ignore favicon 404s --- service/server/middleware.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/service/server/middleware.go b/service/server/middleware.go index 0d991ae..25c9969 100644 --- a/service/server/middleware.go +++ b/service/server/middleware.go @@ -14,7 +14,8 @@ import ( var noisyPaths = map[string]bool{ "/.well-known/appspecific/com.chrome.devtools.json": true, - "/health": true, + "/health": true, + "/favicon.ico": true, } func authMiddleware(apiKey string) func(http.Handler) http.Handler {