From dd4a104e3ae729d954562191d03b942133cc63a0 Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Fri, 7 Aug 2026 17:43:37 +0200 Subject: [PATCH] wip remove exact constraint --- src/frontend/src/features/rooms/components/Join.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontend/src/features/rooms/components/Join.tsx b/src/frontend/src/features/rooms/components/Join.tsx index 90600600..a4e933cd 100644 --- a/src/frontend/src/features/rooms/components/Join.tsx +++ b/src/frontend/src/features/rooms/components/Join.tsx @@ -193,7 +193,7 @@ export const Join = ({ const createVideoTrack = async () => { try { const track = await createLocalVideoTrack({ - deviceId: { exact: videoDeviceId }, + deviceId: videoDeviceId, processor: BackgroundProcessorFactory.fromProcessorConfig(processorConfig), }) @@ -223,7 +223,7 @@ export const Join = ({ const createAudioTrack = async () => { try { const track = await createLocalAudioTrack({ - deviceId: { exact: audioDeviceId }, + deviceId: audioDeviceId, noiseSuppression: true, echoCancellation: true, autoGainControl: true,