From 4153097cc9f8fde5ab9873932dc8967036aa3aa2 Mon Sep 17 00:00:00 2001 From: Hristo Terezov Date: Tue, 19 Apr 2022 12:18:39 -0500 Subject: [PATCH] fix(prejoin):Disable device selection on iosSafari It seems that showing the device selection dialog on ios Safari will leads to not working audio. This is temporary fix until we find out better solution. --- react/features/device-selection/functions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react/features/device-selection/functions.js b/react/features/device-selection/functions.js index 1a498809a..4f9a05bcc 100644 --- a/react/features/device-selection/functions.js +++ b/react/features/device-selection/functions.js @@ -49,7 +49,7 @@ export function getDeviceSelectionDialogProps(stateful: Object | Function) { // conference and this is not supported, when we open device selection on // welcome page changing input devices will not be a problem // on welcome page we also show only what we have saved as user selected devices - if (!conference) { + if (!conference && !isMobileSafari) { disableAudioInputChange = false; disableVideoInputSelect = false; selectedAudioInputId = userSelectedMic;