never show pubkey for quoted message author

pull/1739/head
Audric Ackermann 4 years ago
parent 3424796212
commit 66c86a3cf6
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

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

Loading…
Cancel
Save