Browse Source

fixup! fix(call): resume input device track after change

Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
fix/15614/do-not-mute
Maksim Sukharev 3 months ago
parent
commit
d7b5b5e1a3
  1. 2
      src/components/CallView/shared/LocalAudioControlButton.vue
  2. 2
      src/components/CallView/shared/LocalVideoControlButton.vue

2
src/components/CallView/shared/LocalAudioControlButton.vue

@ -291,7 +291,7 @@ export default {
},
handleAudioInputIdChange(audioInputId) {
if (this.showDevices) {
if (this.showDevices && this.showMicrophoneOn) {
// If device is changed from bottom bar, it should not be muted
this.model.set('resumeAudioAfterChange', true)
}

2
src/components/CallView/shared/LocalVideoControlButton.vue

@ -215,7 +215,7 @@ export default {
},
handleVideoInputIdChange(videoInputId) {
if (this.showDevices) {
if (this.showDevices && this.showVideoOn) {
// If device is changed from bottom bar, it should not be muted
this.model.set('resumeVideoAfterChange', true)
}

Loading…
Cancel
Save