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