diff --git a/src/state/MediaDevices.ts b/src/state/MediaDevices.ts index 86773f87..0712a3fa 100644 --- a/src/state/MediaDevices.ts +++ b/src/state/MediaDevices.ts @@ -392,10 +392,9 @@ export class MediaDevices { public readonly audioOutput: MediaDevice< AudioOutputDeviceLabel, SelectedAudioOutputDevice - > = - getUrlParams().controlledAudioDevices && platform !== "ios" - ? new ControlledAudioOutput(this.scope) - : new AudioOutput(this.usingNames$, this.scope); + > = getUrlParams().controlledAudioDevices + ? new ControlledAudioOutput(this.scope) + : new AudioOutput(this.usingNames$, this.scope); public readonly videoInput: MediaDevice = new VideoInput(this.usingNames$, this.scope);