diff --git a/src/Model/Post/Engagement.php b/src/Model/Post/Engagement.php index e5de964d04..99940a784d 100644 --- a/src/Model/Post/Engagement.php +++ b/src/Model/Post/Engagement.php @@ -277,6 +277,9 @@ class Engagement $body = self::addResharers($body, $item['uri-id']); foreach ($receivers as $receiver) { + if (empty($receiver)) { + continue; + } $contact = Contact::getByURL($receiver, false, ['nick', 'addr', 'contact-type']); if (empty($contact)) { continue;