From 8414aa800de6e55c00ce91540401a4583e12365f Mon Sep 17 00:00:00 2001 From: audric Date: Wed, 28 Jul 2021 14:46:13 +1000 Subject: [PATCH] fix a bug not making profile name updates in opengroup --- ts/receiver/dataMessage.ts | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/ts/receiver/dataMessage.ts b/ts/receiver/dataMessage.ts index c82f78d55..8e970a3ee 100644 --- a/ts/receiver/dataMessage.ts +++ b/ts/receiver/dataMessage.ts @@ -47,14 +47,9 @@ async function updateProfile( // Retain old values unless changed: const newProfile = conversation.get('profile') || {}; - if (!profileKey) { - window.log.warn("No need to try to update profile. We don't have a profile key"); - return; - } - newProfile.displayName = profile.displayName; - if (profile.profilePicture) { + if (profile.profilePicture && profileKey) { const prevPointer = conversation.get('avatarPointer'); const needsUpdate = !prevPointer || !_.isEqual(prevPointer, profile.profilePicture); @@ -97,7 +92,7 @@ async function updateProfile( return; } } - } else { + } else if (profileKey) { newProfile.avatar = null; }