This commit is contained in:
Valere
2025-08-06 09:26:07 +02:00
parent fce7b6d456
commit 6dcc44b631

View File

@@ -71,6 +71,7 @@ async function makePreferredLivekitFoci(
}); });
if (validWellKnownFoci.length > 0) { if (validWellKnownFoci.length > 0) {
const toWarmup = validWellKnownFoci[0]; const toWarmup = validWellKnownFoci[0];
// this will call the jwt/sfu/get endpoint to pre create the livekit room.
await getSFUConfigWithOpenID(rtcSession.room.client, toWarmup); await getSFUConfigWithOpenID(rtcSession.room.client, toWarmup);
shouldWarmup = false; shouldWarmup = false;
} }
@@ -86,6 +87,7 @@ async function makePreferredLivekitFoci(
livekit_alias: livekitAlias, livekit_alias: livekitAlias,
}; };
if (shouldWarmup) { if (shouldWarmup) {
// this will call the jwt/sfu/get endpoint to pre create the livekit room.
await getSFUConfigWithOpenID(rtcSession.room.client, focusFormConf); await getSFUConfigWithOpenID(rtcSession.room.client, focusFormConf);
} }
logger.log("Adding livekit focus from config: ", focusFormConf); logger.log("Adding livekit focus from config: ", focusFormConf);