From 237010f8bd9bfcf9df3f52cc7401a20ee483eaac Mon Sep 17 00:00:00 2001 From: bergeouss Date: Sun, 3 May 2026 18:18:14 +0000 Subject: [PATCH] fix: remove phantom /sw.js from PUBLIC_PATHS whitelist (#1481) --- api/auth.py | 1 - 1 file changed, 1 deletion(-) diff --git a/api/auth.py b/api/auth.py index 480f3659..fa1e04cc 100644 --- a/api/auth.py +++ b/api/auth.py @@ -22,7 +22,6 @@ PUBLIC_PATHS = frozenset({ '/login', '/health', '/favicon.ico', '/api/auth/login', '/api/auth/status', '/manifest.json', '/manifest.webmanifest', - '/sw.js', }) COOKIE_NAME = 'hermes_session'