QuickReply: Fix showing toggle mention in guilds (#3181)
This commit is contained in:
parent
7d45862023
commit
68662c9625
1 changed files with 1 additions and 1 deletions
|
@ -196,7 +196,7 @@ function nextReply(isUp: boolean) {
|
|||
channel,
|
||||
message,
|
||||
shouldMention: shouldMention(message),
|
||||
showMentionToggle: channel.isPrivate() && message.author.id !== meId,
|
||||
showMentionToggle: !channel.isPrivate() && message.author.id !== meId,
|
||||
_isQuickReply: true
|
||||
});
|
||||
ComponentDispatch.dispatchToLastSubscribed("TEXTAREA_FOCUS");
|
||||
|
|
Loading…
Reference in a new issue