From 7ee0221270b56b550d1bb504fa61fc9bb48f68af Mon Sep 17 00:00:00 2001 From: Valere Date: Fri, 15 May 2026 18:13:38 +0200 Subject: [PATCH] start muted --- src/state/initialMuteState.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/state/initialMuteState.ts b/src/state/initialMuteState.ts index 4d27cddad..43df0e8ea 100644 --- a/src/state/initialMuteState.ts +++ b/src/state/initialMuteState.ts @@ -36,7 +36,7 @@ export function calculateInitialMuteState( // 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. return { - audioEnabled: true, - videoEnabled: callIntent != "audio", + audioEnabled: false, + videoEnabled: false, }; }