Fix error when receiving DM without attachments

Fix undefined array key error when processing ActivityPub objects without attachments.
pull/6322/head
Severin 7 days ago committed by GitHub
parent e90f79085e
commit 2b2de5f89c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -473,7 +473,7 @@ class Inbox
]
);
if (count($activity['attachment'])) {
if (count($activity['attachment'] ?? [])) {
$photos = 0;
$videos = 0;
$allowed = explode(',', config_cache('pixelfed.media_types'));

Loading…
Cancel
Save