Quellcode durchsuchen

Merge pull request #4931 from pixelfed/staging

Staging
daniel vor 1 Jahr
Ursprung
Commit
0032415459
2 geänderte Dateien mit 2 neuen und 1 gelöschten Zeilen
  1. 1 0
      CHANGELOG.md
  2. 1 1
      resources/views/status/show.blade.php

+ 1 - 0
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)

+ 1 - 1
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) : '';