feature/23-voice-room/poc #93

Merged
hodlbod merged 68 commits from feature/23-voice-room/poc into dev 2026-03-16 20:38:06 +00:00
Showing only changes of commit 84be1ae47b - Show all commits
+5 -1
View File
4
@@ -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})
1