From e5026284fab734c3b7a6fc97b93d3576dd24f90f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5var=20Aamb=C3=B8=20Fosstveit?= Date: Fri, 5 Apr 2019 20:49:48 +0200 Subject: [PATCH] Bug in state check. --- .../components/MeetingDrawer/ParticipantList/ParticipantList.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/components/MeetingDrawer/ParticipantList/ParticipantList.js b/app/src/components/MeetingDrawer/ParticipantList/ParticipantList.js index e1675ba..a7d5213 100644 --- a/app/src/components/MeetingDrawer/ParticipantList/ParticipantList.js +++ b/app/src/components/MeetingDrawer/ParticipantList/ParticipantList.js @@ -152,7 +152,7 @@ const ParticipantListContainer = withRoomContext(connect( { return ( prev.peers === next.peers && - prev.spotlights === next.spotlights && + prev.room.spotlights === next.room.spotlights && prev.room.selectedPeerName === next.room.selectedPeerName ); }