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.
This commit is contained in:
Hristo Terezov 2022-04-19 12:18:39 -05:00
parent ea57ab1c2a
commit e367621e91
1 changed files with 1 additions and 1 deletions

View File

@ -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;