Avoid notice when a contact couldn't be fetched

This commit is contained in:
Michael 2022-06-08 05:35:34 +00:00
parent 2dc45af57a
commit 2064a2ce87

View File

@ -498,6 +498,9 @@ class Item
// Search for forum mentions
foreach (Tag::getFromBody($item['body'], Tag::TAG_CHARACTER[Tag::MENTION] . Tag::TAG_CHARACTER[Tag::EXCLUSIVE_MENTION]) as $tag) {
$contact = Contact::getByURLForUser($tag[2], $item['uid']);
if (empty($contact)) {
continue;
}
$receivers[] = $contact['id'];