Possibly fix a fatal error
This commit is contained in:
parent
ddb6029add
commit
7441bd90c8
|
@ -207,7 +207,12 @@ class Contact
|
||||||
if (empty($cid)) {
|
if (empty($cid)) {
|
||||||
return [];
|
return [];
|
||||||
}
|
}
|
||||||
return self::getById($cid, $fields);
|
|
||||||
|
$contact = self::getById($cid, $fields);
|
||||||
|
if (empty($contact)) {
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
return $contact;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Add internal fields
|
// Add internal fields
|
||||||
|
@ -238,6 +243,10 @@ class Contact
|
||||||
$contact = DBA::selectFirst('contact', $fields, $condition, $options);
|
$contact = DBA::selectFirst('contact', $fields, $condition, $options);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!DBA::isResult($contact)) {
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
|
||||||
// Update the contact in the background if needed
|
// Update the contact in the background if needed
|
||||||
if ((($contact['updated'] < DateTimeFormat::utc('now -7 days')) || empty($contact['avatar'])) &&
|
if ((($contact['updated'] < DateTimeFormat::utc('now -7 days')) || empty($contact['avatar'])) &&
|
||||||
in_array($contact['network'], Protocol::FEDERATED)) {
|
in_array($contact['network'], Protocol::FEDERATED)) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user