Update NoteTransformer, fix tag array

This commit is contained in:
Daniel Supernault 2021-09-22 20:04:23 -06:00
parent 8c6ef9bae2
commit 7b3e672d89
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ class Note extends Fractal\TransformerAbstract
'href' => $parent->permalink(),
'name' => $name
];
$mentions = array_merge($reply, $mentions);
array_push($mentions, $reply);
}
}