diff --git a/src/react-components/ui-root.js b/src/react-components/ui-root.js index b51649860ab10a992e516311a1022b633eba0480..56e57b92d049b0ef0f0746bca028ab555f7c4fbd 100644 --- a/src/react-components/ui-root.js +++ b/src/react-components/ui-root.js @@ -292,7 +292,7 @@ class UIRoot extends Component { // Try to fetch last used mic, and if we don't get it then fall back to default. if (lastUsedMicDeviceId) { - hasAudio = await this.fetchAudioTrack({ audio: { deviceId: { exact: lastUsedMicDeviceId } } }); + hasAudio = await this.fetchAudioTrack({ audio: { deviceId: { ideal: lastUsedMicDeviceId } } }); } if (!hasAudio) { @@ -417,7 +417,6 @@ class UIRoot extends Component { fetchMicDevices = () => { return new Promise(resolve => { navigator.mediaDevices.enumerateDevices().then(mediaDevices => { - console.log(resolve); this.setState( { micDevices: mediaDevices