Merge pull request #5514 from pixelfed/staging

Update PublicApiController
pull/5551/head^2
daniel 1 month ago committed by GitHub
commit 13af8c5133
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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']) ||

Loading…
Cancel
Save