Merge pull request #10056 from fabrixxm/fix/panic-at-the-private-messages
PM: skip messages from missing contacts
This commit is contained in:
commit
fbbab822a0
1 changed files with 5 additions and 0 deletions
|
@ -451,6 +451,11 @@ function render_messages(array $msg, $t)
|
||||||
$body_e = $rr['body'];
|
$body_e = $rr['body'];
|
||||||
$to_name_e = $rr['name'];
|
$to_name_e = $rr['name'];
|
||||||
|
|
||||||
|
if (is_null($rr['url'])) {
|
||||||
|
// contact-id is pointing to a non existing contact
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
$contact = Contact::getByURL($rr['url'], false, ['thumb', 'addr', 'id', 'avatar']);
|
$contact = Contact::getByURL($rr['url'], false, ['thumb', 'addr', 'id', 'avatar']);
|
||||||
$from_photo = Contact::getThumb($contact, $rr['thumb'] ?: $rr['from-photo']);
|
$from_photo = Contact::getThumb($contact, $rr['thumb'] ?: $rr['from-photo']);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue