From 2a9dfaa749be414903b5edf834fbb201e6466498 Mon Sep 17 00:00:00 2001 From: giles Date: Tue, 24 Feb 2026 09:04:25 +0000 Subject: [PATCH] Skip auth state check on /internal/ paths (fragment endpoints) Co-Authored-By: Claude Opus 4.6 --- infrastructure/factory.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/factory.py b/infrastructure/factory.py index dfae5d6..4f3869b 100644 --- a/infrastructure/factory.py +++ b/infrastructure/factory.py @@ -159,7 +159,7 @@ def create_base_app( async def _check_auth_state(): from quart import session as qs from urllib.parse import quote as _quote - if request.path.startswith(("/auth/", "/static/", "/.well-known/", "/users/", "/nodeinfo/")): + if request.path.startswith(("/auth/", "/static/", "/.well-known/", "/users/", "/nodeinfo/", "/internal/")): return uid = qs.get("uid")