diff --git a/CHANGELOG.md b/CHANGELOG.md index e3ddb7c15..322e5ff49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ - Update public/network timelines, fix non-redis response and fix reblogs in home feed ([8b4ac5cc](https://github.com/pixelfed/pixelfed/commit/8b4ac5cc)) - Update Federation, use proper Content-Type headers for following/follower collections ([fb0bb9a3](https://github.com/pixelfed/pixelfed/commit/fb0bb9a3)) - Update ActivityPubFetchService, enforce stricter Content-Type validation ([1232cfc8](https://github.com/pixelfed/pixelfed/commit/1232cfc8)) +- Update status view, fix unlisted/private scope bug ([0f3ca194](https://github.com/pixelfed/pixelfed/commit/0f3ca194)) - ([](https://github.com/pixelfed/pixelfed/commit/)) ## [v0.11.11 (2024-02-09)](https://github.com/pixelfed/pixelfed/compare/v0.11.10...v0.11.11) diff --git a/resources/views/status/show.blade.php b/resources/views/status/show.blade.php index b6927157a..d9743c92f 100644 --- a/resources/views/status/show.blade.php +++ b/resources/views/status/show.blade.php @@ -4,7 +4,7 @@ ]) @php -$s = \App\Services\StatusService::get($status->id); +$s = \App\Services\StatusService::get($status->id, false); $displayName = $s && $s['account'] ? $s['account']['display_name'] : false; $captionPreview = false; $domain = $displayName ? '@' . parse_url($s['account']['url'], PHP_URL_HOST) : '';