diff --git a/react/features/base/participants/actions.js b/react/features/base/participants/actions.js index de820b4abb..6a766171b7 100644 --- a/react/features/base/participants/actions.js +++ b/react/features/base/participants/actions.js @@ -218,14 +218,14 @@ export function muteRemoteParticipant(id) { */ export function participantConnectionStatusChanged(id, connectionStatus) { return (dispatch, getState) => { - return { + dispatch({ type: PARTICIPANT_UPDATED, participant: { connectionStatus, id, mutedWhileDisconnected: figureOutMutedWhileDisconnectedStatus(getState(), id, connectionStatus) } - }; + }); }; }