Disable audiosettings button on Firefox as it is not supported
This commit is contained in:
parent
45570bc0e7
commit
d1d968997e
|
@ -117,7 +117,9 @@ class AudioSettingsButton extends Component<Props, State> {
|
|||
*/
|
||||
render() {
|
||||
const { isDisabled, onAudioOptionsClick, visible } = this.props;
|
||||
const settingsDisabled = !this.state.hasPermissions || isDisabled;
|
||||
const settingsDisabled = !this.state.hasPermissions
|
||||
|| isDisabled
|
||||
|| !JitsiMeetJS.mediaDevices.isMultipleAudioInputSupported();
|
||||
|
||||
return visible ? (
|
||||
<AudioSettingsPopup>
|
||||
|
|
Loading…
Reference in New Issue