Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions src/components/status.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,7 @@ function Status({
emojis: accountEmojis,
bot,
group,
source: { pleroma: { actorType = undefined } = {} } = {},
},
id,
repliesCount,
Expand Down Expand Up @@ -503,7 +504,7 @@ function Status({
if (reblog) {
// If has statusID, means useItemID (cached in states)

if (group) {
if (group || actorType === 'Group') {
return (
<div
data-state-post-id={sKey}
Expand All @@ -512,7 +513,14 @@ function Status({
>
<div class="status-pre-meta">
<Icon icon="group" size="l" alt={t`Group`} />{' '}
<NameText account={status.account} instance={instance} showAvatar />
<Trans>
<span>Posted in</span>{' '}
<NameText
account={status.account}
instance={instance}
showAvatar
/>{' '}
</Trans>
</div>
<Status
status={statusID ? null : reblog}
Expand Down
Loading
Loading