|
@@ -760,15 +760,6 @@ class RTCUtils extends Listenable {
|
760
|
760
|
return isAudioOutputDeviceChangeAvailable;
|
761
|
761
|
}
|
762
|
762
|
|
763
|
|
- // Calling getUserMedia again (for preview) kills the track returned by the first getUserMedia call because of
|
764
|
|
- // https://bugs.webkit.org/show_bug.cgi?id=179363. Therefore, do not show microphone/camera options on mobile
|
765
|
|
- // Safari. Bug fixed in Safari 15.4.
|
766
|
|
- if ((deviceType === 'audioinput' || deviceType === 'input')
|
767
|
|
- && browser.isIosBrowser()
|
768
|
|
- && browser.isVersionLessThan('15.4')) {
|
769
|
|
- return false;
|
770
|
|
- }
|
771
|
|
-
|
772
|
763
|
return true;
|
773
|
764
|
}
|
774
|
765
|
|