소스 검색

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.
master
Hristo Terezov 3 년 전
부모
커밋
4153097cc9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      react/features/device-selection/functions.js

+ 1
- 1
react/features/device-selection/functions.js 파일 보기

49
     // conference and this is not supported, when we open device selection on
49
     // conference and this is not supported, when we open device selection on
50
     // welcome page changing input devices will not be a problem
50
     // welcome page changing input devices will not be a problem
51
     // on welcome page we also show only what we have saved as user selected devices
51
     // on welcome page we also show only what we have saved as user selected devices
52
-    if (!conference) {
52
+    if (!conference && !isMobileSafari) {
53
         disableAudioInputChange = false;
53
         disableAudioInputChange = false;
54
         disableVideoInputSelect = false;
54
         disableVideoInputSelect = false;
55
         selectedAudioInputId = userSelectedMic;
55
         selectedAudioInputId = userSelectedMic;

Loading…
취소
저장