diff --git a/src/components/name-text.jsx b/src/components/name-text.jsx index c69b7788..ef8beb2a 100644 --- a/src/components/name-text.jsx +++ b/src/components/name-text.jsx @@ -11,7 +11,12 @@ function NameText({ account, showAvatar, showAcct, short, external }) { const displayNameWithEmoji = emojifyText(displayName, emojis); - if (username === displayName) username = null; + if ( + !short && + username.toLowerCase().trim() === (displayName || '').toLowerCase().trim() + ) { + username = null; + } return (