mirror of
https://github.com/friendica/friendica
synced 2024-11-09 16:22:56 +00:00
Merge pull request #11621 from annando/notice
Avoid notice when a contact couldn't be fetched
This commit is contained in:
commit
86837ddb4a
1 changed files with 3 additions and 0 deletions
|
@ -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'];
|
||||
|
||||
|
|
Loading…
Reference in a new issue