Merge pull request #1739 from oxen-io/clearnet

never show pubkey for quoted message author
pull/1998/head v1.6.6
Audric Ackermann 4 years ago committed by GitHub
commit fb95c5fb48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

Loading…
Cancel
Save