From fe269a0cfe91c1b5cd87a52209ba4ad0d7892a71 Mon Sep 17 00:00:00 2001 From: audric Date: Thu, 13 Jan 2022 17:02:53 +1100 Subject: [PATCH] make sure to update displayName even if avatar failed to DL --- ts/receiver/dataMessage.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ts/receiver/dataMessage.ts b/ts/receiver/dataMessage.ts index 3031556a9..eacbcc22f 100644 --- a/ts/receiver/dataMessage.ts +++ b/ts/receiver/dataMessage.ts @@ -92,8 +92,10 @@ async function createOrUpdateProfile( } newProfile.avatar = path; } catch (e) { - window.log.warn('Failed to download attachment at', profile.profilePicture); - return; + window.log.warn( + `Failed to download attachment at ${profile.profilePicture}. Maybe it expired? ${e.message}` + ); + // do not return here, we still want to update the display name even if the avatar failed to download } } } else if (profileKey) {