1
0
Fork 0

Update StatusTransformer

This commit is contained in:
Daniel Supernault 2018-12-06 19:02:24 -07:00
parent e48b8cf17d
commit a767f16094
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ class StatusTransformer extends Fractal\TransformerAbstract
'in_reply_to_id' => $status->in_reply_to_id,
'in_reply_to_account_id' => $status->in_reply_to_profile_id,
'reblog' => $status->reblog_of_id || $status->in_reply_to_id ? $this->transform($status->parent()) : null,
'content' => "$status->rendered",
'content' => $status->rendered ?? $status->caption,
'created_at' => $status->created_at->format('c'),
'emojis' => [],
'reblogs_count' => $status->shares()->count(),