From 7b85b4f0517532a75fe62122d13b7834b7fd923d Mon Sep 17 00:00:00 2001 From: Robin Townsend Date: Wed, 9 Aug 2023 17:34:53 -0400 Subject: [PATCH] Fix joining with muted video in widget mode This typo was making it impossible to join a call in Element Call's widget mode with your camera off. --- src/room/GroupCallView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/room/GroupCallView.tsx b/src/room/GroupCallView.tsx index d8e2fd6b..8f533d72 100644 --- a/src/room/GroupCallView.tsx +++ b/src/room/GroupCallView.tsx @@ -135,7 +135,7 @@ export function GroupCallView({ } if (videoInput === null) { - latestMuteStates.current!.video.setEnabled?.(true); + latestMuteStates.current!.video.setEnabled?.(false); } else { const deviceId = await findDeviceByName( videoInput,