fix closed group updates undefined on no names (#2092)

pull/2094/head
Audric Ackermann 3 years ago committed by GitHub
parent abd146c4ca
commit 5846caffc4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -16,7 +16,6 @@ function useMessageItemProps(convoId: string) {
return { return {
isTyping: !!convoProps.isTyping, isTyping: !!convoProps.isTyping,
lastMessage: convoProps.lastMessage, lastMessage: convoProps.lastMessage,
unreadCount: convoProps.unreadCount || 0, unreadCount: convoProps.unreadCount || 0,
}; };
} }

@ -41,7 +41,8 @@ export function useConversationsUsernameWithQuoteOrFullPubkey(pubkeys: Array<str
return window.i18n('you'); return window.i18n('you');
} }
const convo = state.conversations.conversationLookup[pubkey]; const convo = state.conversations.conversationLookup[pubkey];
return `"${convo?.profileName}"` || `"${convo?.name}"` || pubkey; const nameGot = convo?.profileName || convo?.name;
return nameGot?.length ? `"${nameGot}"` : pubkey;
}); });
}); });
} }

Loading…
Cancel
Save