We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa0b521 commit c3f5b08Copy full SHA for c3f5b08
src/UrlParams.ts
@@ -288,7 +288,11 @@ export const getUrlParams = (
288
fontScale: Number.isNaN(fontScale) ? null : fontScale,
289
allowIceFallback: parser.getFlagParam("allowIceFallback"),
290
perParticipantE2EE: parser.getFlagParam("perParticipantE2EE"),
291
- controlledMediaDevices: parser.getFlagParam("controlledMediaDevices"),
+ controlledMediaDevices: parser.getFlagParam(
292
+ "controlledAudioDevices",
293
+ // the deprecated property name
294
+ parser.getFlagParam("controlledMediaDevices"),
295
+ ),
296
skipLobby: parser.getFlagParam(
297
"skipLobby",
298
isWidget && intent === UserIntent.StartNewCall,
0 commit comments