From e0cd6a3aa5c1d8b37a3710964c23405b441682ac Mon Sep 17 00:00:00 2001 From: Blake Blackshear Date: Wed, 17 Dec 2025 12:54:10 +0000 Subject: [PATCH] consider anonymous user authenticated --- frigate/api/auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/api/auth.py b/frigate/api/auth.py index d3b50067c..5ad93a664 100644 --- a/frigate/api/auth.py +++ b/frigate/api/auth.py @@ -151,7 +151,7 @@ def _is_authenticated(request: Request) -> bool: Port 5000 internal requests are considered anonymous despite having admin role. """ username = request.headers.get("remote-user") - return username is not None and username != "anonymous" + return username is not None def allow_public():