fix(device-selection): Update redux when a new speaker is selected

Update userSelectedAudioOutputDeviceId and userSelectedAudioOutputDeviceLabel when a new speaker is selected from the audio settings popup menu
pull/6993/head
Jaya Allamsetty 5 years ago committed by Jaya Allamsetty
parent f4bcad02d8
commit 45570bc0e7
  1. 6
      react/features/base/devices/actions.js

@ -243,8 +243,10 @@ export function setAudioInputDeviceAndUpdateSettings(deviceId) {
* @returns {Function}
*/
export function setAudioOutputDevice(deviceId) {
return function(dispatch) {
return setAudioOutputDeviceId(deviceId, dispatch);
return function(dispatch, getState) {
const deviceLabel = getDeviceLabelById(getState(), deviceId, 'audioOutput');
return setAudioOutputDeviceId(deviceId, dispatch, true, deviceLabel);
};
}

Loading…
Cancel
Save