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

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);
}
}