make sure to update displayName even if avatar failed to DL

pull/2137/head
audric 3 years ago
parent 8159613626
commit fe269a0cfe

@ -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) {

Loading…
Cancel
Save