From 38455d4549fa2fe2b81aa1e616eb2321e3c9d3ef Mon Sep 17 00:00:00 2001 From: Scott Idem Date: Tue, 2 Dec 2025 18:46:19 -0500 Subject: [PATCH] Bug fix!!! --- app/routers/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/routers/api.py b/app/routers/api.py index 3e4474f..fe59a8b 100644 --- a/app/routers/api.py +++ b/app/routers/api.py @@ -235,7 +235,7 @@ class JitsiTokenRequest(BaseModel): # Clearly separated override categories features: Optional[Dict[str, bool]] = Field(None, description="Feature flags like recording, livestreaming.") settings: Optional[Dict[str, bool]] = Field(None, description="User profile settings like startMuted, reactionsMuted.") - config: Optional[Dict[str, any]] = Field(None, description="Overrides for config.js properties.") + config: Optional[Dict] = Field(None, description="Overrides for config.js properties.") # A simple endpoint to generate the Jitsi-specific JWT @router.post("/jitsi_token")