fix: leading space when hiding mentions

zio/stable
patak 2023-01-19 12:12:58 +01:00
parent fab1eb13b3
commit 359cc4935b
1 changed files with 1 additions and 1 deletions

View File

@ -529,7 +529,7 @@ function transformCollapseMentions(status?: mastodon.v1.Status, inReplyToStatus?
// But this covers the majority of cases.
const showMentions = !(contextualMentionsCount === 0 || (mentionsCount === 1 && status?.inReplyToAccountId))
const grouped = contextualMentionsCount > 2
if (grouped)
if (!showMentions || grouped)
trimContentStart?.()
const contextualChildren = children.slice(mentions.length)