Skip to content

Commit

Permalink
Update NoteTransformer, fix tag array
Browse files Browse the repository at this point in the history
  • Loading branch information
dansup committed Sep 23, 2021
1 parent 8c6ef9b commit 7b3e672
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Transformer/ActivityPub/Verb/Note.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public function transform(Status $status)
'href' => $parent->permalink(),
'name' => $name
];
$mentions = array_merge($reply, $mentions);
array_push($mentions, $reply);
}
}

Expand Down

0 comments on commit 7b3e672

Please sign in to comment.