Merge pull request #5514 from pixelfed/staging

Update PublicApiController
pull/5551/head^2
daniel 5 months 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) { ->map(function ($s) use ($user) {
try { try {
$status = StatusService::get($s->id, false); $status = StatusService::get($s->id, false);
if (! $status) {
return false;
}
} catch (\Exception $e) { } catch (\Exception $e) {
$status = false; $status = false;
} }
@ -740,6 +743,9 @@ class PublicApiController extends Controller
return $status; return $status;
}) })
->filter(function ($s) use ($onlyMedia) { ->filter(function ($s) use ($onlyMedia) {
if (! $s) {
return false;
}
if ($onlyMedia) { if ($onlyMedia) {
if ( if (
! isset($s['media_attachments']) || ! isset($s['media_attachments']) ||

Loading…
Cancel
Save