diff --git a/CHANGELOG.md b/CHANGELOG.md index bf88bc4b..7a77db67 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,10 @@ and this project adheres to - ♻️(frontend) encapsulate error tracking behind a telemetry module - ♻️(frontend) encapsulate PostHog capture calls in the telemetry module +### Fixed + +- 🐛(frontend) drop exact deviceId constraint on dynamic track creation + ## [1.25.2] - 2026-08-06 ### Fixed 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,