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 changed files with 2 additions and 0 deletions

View 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'])) {