From aee8a3875336041ab7140d3600d475e4cf002e02 Mon Sep 17 00:00:00 2001 From: Lyubo Marinov Date: Fri, 9 Feb 2018 00:55:44 -0600 Subject: [PATCH] Play reactions on the sender as well --- react/features/reactions/actions.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/react/features/reactions/actions.js b/react/features/reactions/actions.js index da74c5447..50ed31ee7 100644 --- a/react/features/reactions/actions.js +++ b/react/features/reactions/actions.js @@ -51,5 +51,8 @@ export function sendReaction(reaction: string) { 'jitsi-meet-muc-msg-topic': 'xxx', payload })); + + // FIXME It's not a received reaction so rename the action creator. + dispatch(addReceivedReaction(reaction, /* participant */ undefined)); }; }