From cbc816c3ed0aad69410203feccca1a278e1a5cf5 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Fri, 7 May 2021 13:35:08 +1000 Subject: [PATCH] update displayname even if we dont have avatar on incoming profile --- ts/receiver/queuedJob.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/receiver/queuedJob.ts b/ts/receiver/queuedJob.ts index b77cd68a5..23ca84dbd 100644 --- a/ts/receiver/queuedJob.ts +++ b/ts/receiver/queuedJob.ts @@ -374,7 +374,7 @@ async function handleRegularMessage( // Check if we need to update any profile names // the only profile we don't update with what is coming here is ours, // as our profile is shared accross our devices with a ConfigurationMessage - if (type === 'incoming' && dataMessage.profile && dataMessage.profile && dataMessage.profileKey) { + if (type === 'incoming' && dataMessage.profile) { void updateProfileOneAtATime( sendingDeviceConversation, dataMessage.profile,