start muted

This commit is contained in:
Valere
2026-05-15 18:13:38 +02:00
parent 62bc420df9
commit 7ee0221270

View File

@@ -36,7 +36,7 @@ export function calculateInitialMuteState(
// Same for when showing a lobby, as users can adjust their settings there. // Same for when showing a lobby, as users can adjust their settings there.
// Additionally, if the call intent is "audio", we disable video by default. // Additionally, if the call intent is "audio", we disable video by default.
return { return {
audioEnabled: true, audioEnabled: false,
videoEnabled: callIntent != "audio", videoEnabled: false,
}; };
} }