Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
Loading