diff --git a/Explorer/Assets/DCL/Chat/_Refactor/ChatInput/States/SuggestionPanelChatInputState.cs b/Explorer/Assets/DCL/Chat/_Refactor/ChatInput/States/SuggestionPanelChatInputState.cs index 1637693573e..357c4d5a149 100644 --- a/Explorer/Assets/DCL/Chat/_Refactor/ChatInput/States/SuggestionPanelChatInputState.cs +++ b/Explorer/Assets/DCL/Chat/_Refactor/ChatInput/States/SuggestionPanelChatInputState.cs @@ -148,6 +148,9 @@ private void UpdateProfileNameMap() //We add or update the remaining participants foreach (Profile.CompactInfo profile in participantProfiles) { + if (string.IsNullOrEmpty(profile.DisplayName)) + continue; + if (profileSuggestionsDictionary.TryGetValue(profile.DisplayName, out ProfileInputSuggestionData profileSuggestionData)) { if (!profileSuggestionData.ProfileData.Equals(profile))