addressed review comments

This commit is contained in:
Nils Ohlmeier 2021-10-28 16:52:22 -07:00 committed by Hristo Terezov
parent 41f5872f70
commit cd6a814978
1 changed files with 2 additions and 2 deletions

View File

@ -80,7 +80,7 @@ function getNewAudioInputDevice(newDevices, localAudio, newLabel) {
return availableAudioInputDevices[0].deviceId; return availableAudioInputDevices[0].deviceId;
} }
} else if (selectedAudioInputDevice } else if (selectedAudioInputDevice
&& selectedAudioInputDeviceId !== localAudio.getDeviceId()) { && selectedAudioInputDeviceId !== localAudioDeviceId) {
if (newLabel) { if (newLabel) {
// If a Firefox user with manual permission prompt chose a different // If a Firefox user with manual permission prompt chose a different
@ -132,7 +132,7 @@ function getNewVideoInputDevice(newDevices, localVideo, newLabel) {
return availableVideoInputDevices[0].deviceId; return availableVideoInputDevices[0].deviceId;
} }
} else if (selectedVideoInputDevice } else if (selectedVideoInputDevice
&& selectedVideoInputDeviceId !== localVideo.getDeviceId()) { && selectedVideoInputDeviceId !== localVideoDeviceId) {
if (newLabel) { if (newLabel) {
// If a Firefox user with manual permission prompt chose a different // If a Firefox user with manual permission prompt chose a different