diff --git a/src/state/MediaDevices.ts b/src/state/MediaDevices.ts index fd5a40d6..5a81a3a5 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 + // ? new ControlledAudioOutput(this.scope): + new AudioOutput(this.usingNames$, this.scope); public readonly videoInput: MediaDevice = new VideoInput(this.usingNames$, this.scope);