From 3796db20ea76f4df0e2360cfd0ee3c50d6037925 Mon Sep 17 00:00:00 2001 From: Hristo Terezov Date: Tue, 24 Nov 2020 14:47:09 -0600 Subject: [PATCH] fix(connection-status): action --- react/features/base/participants/actions.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) } - }; + }); }; }