Merge pull request #5514 from pixelfed/staging

Update PublicApiController
This commit is contained in:
daniel 2025-01-18 00:45:03 -07:00 committed by GitHub
commit 13af8c5133
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -730,6 +730,9 @@ class PublicApiController extends Controller
->map(function ($s) use ($user) {
try {
$status = StatusService::get($s->id, false);
if (! $status) {
return false;
}
} catch (\Exception $e) {
$status = false;
}
@ -740,6 +743,9 @@ class PublicApiController extends Controller
return $status;
})
->filter(function ($s) use ($onlyMedia) {
if (! $s) {
return false;
}
if ($onlyMedia) {
if (
! isset($s['media_attachments']) ||