From aa1d02de09e410d9d22e34fd9a8b919738ab5934 Mon Sep 17 00:00:00 2001 From: Blake Blackshear Date: Thu, 9 May 2024 06:21:27 -0500 Subject: [PATCH] default cookie name should pass regex test --- frigate/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/config.py b/frigate/config.py index f2349bee1..c89447242 100644 --- a/frigate/config.py +++ b/frigate/config.py @@ -126,7 +126,7 @@ class UserConfig(FrigateBaseModel): class AuthConfig(FrigateBaseModel): enabled: bool = Field(default=False, title="Enable authentication") cookie_name: str = Field( - default="jwt.token", title="Name for jwt token cookie", pattern=r"^[a-z]_*$" + default="frigate_token", title="Name for jwt token cookie", pattern=r"^[a-z]_*$" ) session_length: int = Field( default=86400, title="Session length for jwt session tokens", ge=60