From e7de8b0ad6ba6a90d8ec68e6cbcd1e565010e23d Mon Sep 17 00:00:00 2001 From: Sven Augustin Date: Sat, 9 May 2026 23:42:14 +0200 Subject: [PATCH] favicon should not be behind authentication --- auth/mw.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth/mw.py b/auth/mw.py index 7950c1a..57cd77f 100644 --- a/auth/mw.py +++ b/auth/mw.py @@ -4,7 +4,7 @@ from nicegui import app from starlette.middleware.base import BaseHTTPMiddleware -unrestricted_page_routes = {"/login"} +unrestricted_page_routes = {"/favicon.ico", "/login"} class AuthMiddleware(BaseHTTPMiddleware):