Use the contact id whenever we are following the contact

This commit is contained in:
Michael 2019-08-13 15:54:47 +00:00
parent ad5dc91e23
commit aab6b739d8
1 ha cambiato i file con 2 aggiunte e 0 eliminazioni

Vedi File

@ -1243,6 +1243,8 @@ class Item extends BaseObject
{
if (!empty($item['contact-id']) && DBA::exists('contact', ['self' => true, 'id' => $item['contact-id']])) {
return $item['contact-id'];
} elseif (($item['gravity'] == GRAVITY_PARENT) && !empty($item['uid']) && !empty($item['contact-id']) && Contact::isSharing($item['contact-id'], $item['uid'])) {
return $item['contact-id'];
} elseif (!empty($item['uid']) && !Contact::isSharing($item['author-id'], $item['uid'])) {
return $item['author-id'];
} elseif (!empty($item['contact-id'])) {