fix(device-selection) Do not create preview when mic selection is disabled.

This fixes an issue on mobile Safari when audio is lost after the user opens the device selection menu.
pull/9960/head jitsi-meet_6338
Jaya Allamsetty 4 years ago committed by Jaya Allamsetty
parent e278703c58
commit 58d98ad7d3
  1. 6
      react/features/device-selection/components/DeviceSelection.js

@ -258,6 +258,12 @@ class DeviceSelection extends AbstractDialogTab<Props, State> {
* @returns {void}
*/
_createAudioInputTrack(deviceId) {
const { hideAudioInputPreview } = this.props;
if (hideAudioInputPreview) {
return;
}
return this._disposeAudioInputPreview()
.then(() => createLocalTrack('audio', deviceId, 5000))
.then(jitsiLocalTrack => {

Loading…
Cancel
Save