mirror of https://github.com/vector-im/riot-web
Fix media device selectors not updating
Missed a setState Fixes https://github.com/vector-im/riot-web/issues/9036pull/21833/head
parent
593bd8ff66
commit
c7b019830d
|
@ -76,14 +76,23 @@ export default class VoiceUserSettingsTab extends React.Component {
|
|||
|
||||
_setAudioOutput = (e) => {
|
||||
CallMediaHandler.setAudioOutput(e.target.value);
|
||||
this.setState({
|
||||
activeAudioOutput: e.target.value,
|
||||
});
|
||||
};
|
||||
|
||||
_setAudioInput = (e) => {
|
||||
CallMediaHandler.setAudioInput(e.target.value);
|
||||
this.setState({
|
||||
activeAudioInput: e.target.value,
|
||||
});
|
||||
};
|
||||
|
||||
_setVideoInput = (e) => {
|
||||
CallMediaHandler.setVideoInput(e.target.value);
|
||||
this.setState({
|
||||
activeVideoInput: e.target.value,
|
||||
});
|
||||
};
|
||||
|
||||
_changeWebRtcMethod = (p2p) => {
|
||||
|
|
Loading…
Reference in New Issue