diff --git a/infrastructure/factory.py b/infrastructure/factory.py index 9692ca8..208d2f7 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/") or request.path.startswith("/static/"): + if request.path.startswith(("/auth/", "/static/", "/.well-known/", "/users/", "/nodeinfo/")): return uid = qs.get("uid")