From eeaf0f931170985717afa10b6df37b252ee86f90 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Fri, 7 Jan 2022 19:59:29 -0700 Subject: [PATCH] Update StatusService --- app/Services/StatusService.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/Services/StatusService.php b/app/Services/StatusService.php index 7d72ccbe0..f98b986ab 100644 --- a/app/Services/StatusService.php +++ b/app/Services/StatusService.php @@ -68,6 +68,7 @@ class StatusService $status['shortcode'], $status['taggedPeople'], $status['thread'], + $status['pinned'], $status['account']['header_bg'], $status['account']['is_admin'], $status['account']['last_fetched_at'], @@ -87,6 +88,8 @@ class StatusService $status['account']['last_status_at'] = null; $status['media_attachments'] = array_values(MediaService::getMastodon($status['id'])); + $status['muted'] = false; + $status['reblogged'] = false; return $status; }