Limit audio output selection to chrome - whitelist

auto_join_3.3
Mészáros Mihály 2020-04-22 12:33:37 +02:00
parent 58b4aaf6c1
commit 3236a18a0b
1 changed files with 52 additions and 46 deletions

View File

@ -58,6 +58,7 @@ const Settings = ({
room,
me,
settings,
browser,
onToggleAdvancedMode,
onTogglePermanentTopBar,
handleCloseSettings,
@ -233,6 +234,7 @@ const Settings = ({
</FormHelperText>
</FormControl>
</form>
{ browser.name === 'chrome' &&
<form className={classes.setting} autoComplete='off'>
<FormControl className={classes.formControl}>
<Select
@ -278,6 +280,7 @@ const Settings = ({
</FormHelperText>
</FormControl>
</form>
}
<form className={classes.setting} autoComplete='off'>
<FormControl className={classes.formControl}>
<Select
@ -409,6 +412,7 @@ Settings.propTypes =
me : appPropTypes.Me.isRequired,
room : appPropTypes.Room.isRequired,
settings : PropTypes.object.isRequired,
browser : PropTypes.object.isRequired,
onToggleAdvancedMode : PropTypes.func.isRequired,
onTogglePermanentTopBar : PropTypes.func.isRequired,
handleChangeMode : PropTypes.func.isRequired,
@ -421,7 +425,8 @@ const mapStateToProps = (state) =>
return {
me : state.me,
room : state.room,
settings : state.settings
settings : state.settings,
browser : state.me.browser,
};
};
@ -441,6 +446,7 @@ export default withRoomContext(connect(
{
return (
prev.me === next.me &&
prev.me.browser === next.me.browser &&
prev.room === next.room &&
prev.settings === next.settings
);