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
This commit is contained in:
Jaya Allamsetty 2020-06-03 17:52:29 -04:00 committed by Jaya Allamsetty
parent f4bcad02d8
commit 45570bc0e7
1 changed files with 4 additions and 2 deletions

View File

@ -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);
};
}