Cleaned up the aud field. We think this part is correct finally.

This commit is contained in:
Scott Idem
2025-12-03 15:48:57 -05:00
parent 3394ebcdad
commit 0e41205472

View File

@@ -266,7 +266,7 @@ async def create_jitsi_jwt(
# This is where we securely set the moderator and user info. # 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. # Even though 'user' is included we are currently ignoring it to prevent client overrides. It is rebuilt below from the main fields.
payload = { payload = {
"aud": "my_jitsi_app_id", "aud": JWT_APP_ID,
"iss": JWT_APP_ID, "iss": JWT_APP_ID,
"sub": JITSI_DOMAIN, # Your Jitsi base domain "sub": JITSI_DOMAIN, # Your Jitsi base domain
"room": request_data.room, "room": request_data.room,