From eec8b9e58e32e024148cd1552af97b3bf2ac7860 Mon Sep 17 00:00:00 2001 From: Robert Pintilii Date: Thu, 11 Nov 2021 14:48:15 +0200 Subject: [PATCH] fix(participants-list) Show participants with empty names (#10353) --- .../components/native/MeetingParticipantList.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react/features/participants-pane/components/native/MeetingParticipantList.js b/react/features/participants-pane/components/native/MeetingParticipantList.js index a7684e6b2..ccff908cc 100644 --- a/react/features/participants-pane/components/native/MeetingParticipantList.js +++ b/react/features/participants-pane/components/native/MeetingParticipantList.js @@ -136,7 +136,7 @@ class MeetingParticipantList extends PureComponent { const { _localParticipant, _remoteParticipants } = this.props; const { searchString } = this.state; const participant = item === _localParticipant?.id ? _localParticipant : _remoteParticipants.get(item); - const displayName = participant?.name; + const displayName = participant?.name || ''; if (displayName) { const names = normalizeAccents(displayName)