diff --git a/react/features/base/devices/actions.js b/react/features/base/devices/actions.js index b5fc88573..3a8c358db 100644 --- a/react/features/base/devices/actions.js +++ b/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); }; }