never show pubkey for quoted message author

This commit is contained in:
Audric Ackermann 2021-06-28 16:55:44 +10:00
parent 3424796212
commit 66c86a3cf6
No known key found for this signature in database
GPG key ID: 999F434D76324AD4

View file

@ -239,14 +239,7 @@ export const QuoteText = (props: any) => {
};
export const QuoteAuthor = (props: any) => {
const {
authorProfileName,
authorPhoneNumber,
authorName,
isFromMe,
isIncoming,
isPublic,
} = props;
const { authorProfileName, authorPhoneNumber, authorName, isFromMe, isIncoming } = props;
return (
<div
@ -263,7 +256,7 @@ export const QuoteAuthor = (props: any) => {
name={authorName}
profileName={authorProfileName}
compact={true}
shouldShowPubkey={Boolean(isPublic)}
shouldShowPubkey={false} // never show the pubkey for quoted messages author
/>
)}
</div>