From 47d6e9f963971502887972f3bc845ac1621536dd Mon Sep 17 00:00:00 2001 From: mplorentz Date: Fri, 6 Mar 2026 16:37:05 -0500 Subject: [PATCH] Allow joining without a microphone --- src/app/voice.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/app/voice.ts b/src/app/voice.ts index 4ac68189..1b1aef89 100644 --- a/src/app/voice.ts +++ b/src/app/voice.ts @@ -168,7 +168,11 @@ export const joinVoiceRoom = async ( throw e } - await room.localParticipant.setMicrophoneEnabled(true) + try { + await room.localParticipant.setMicrophoneEnabled(true) + } catch (e) { + pushToast({theme: "error", message: "Could not access microphone"}) + } currentVoiceSession.set({url, h, room, muted: false})