From 0e4120547271a62c96683fb3c95129e50d381743 Mon Sep 17 00:00:00 2001 From: Scott Idem Date: Wed, 3 Dec 2025 15:48:57 -0500 Subject: [PATCH] Cleaned up the aud field. We think this part is correct finally. --- 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 bf5b630..dcc7b68 100644 --- a/app/routers/api.py +++ b/app/routers/api.py @@ -266,7 +266,7 @@ async def create_jitsi_jwt( # This is where we securely set the moderator and user info. # Even though 'user' is included we are currently ignoring it to prevent client overrides. It is rebuilt below from the main fields. payload = { - "aud": "my_jitsi_app_id", + "aud": JWT_APP_ID, "iss": JWT_APP_ID, "sub": JITSI_DOMAIN, # Your Jitsi base domain "room": request_data.room,