Bug in state check.

master
Håvar Aambø Fosstveit 2019-04-05 20:49:48 +02:00
parent 90b2ccd0a9
commit e5026284fa
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ const ParticipantListContainer = withRoomContext(connect(
{ {
return ( return (
prev.peers === next.peers && prev.peers === next.peers &&
prev.spotlights === next.spotlights && prev.room.spotlights === next.room.spotlights &&
prev.room.selectedPeerName === next.room.selectedPeerName prev.room.selectedPeerName === next.room.selectedPeerName
); );
} }