diff --git a/ts/components/ConversationListItem.tsx b/ts/components/ConversationListItem.tsx index a2404c912..76f1ce05f 100644 --- a/ts/components/ConversationListItem.tsx +++ b/ts/components/ConversationListItem.tsx @@ -229,7 +229,7 @@ class ConversationListItem extends React.PureComponent { const displayName = isMe ? i18n('noteToSelf') : profileName; let shouldShowPubkey = false; - if (!name || name.length === 0) { + if ((!name || name.length === 0) && (!displayName || displayName.length === 0)) { shouldShowPubkey = true; }