Merge pull request #11855 from annando/contact-id2
The contact-id of a wall posting is always the owner contact
This commit is contained in:
commit
2957a3def6
|
@ -451,6 +451,12 @@ class Item
|
|||
if ($item['uid'] == 0) {
|
||||
return $item['author-id'];
|
||||
}
|
||||
|
||||
if ($item['origin']) {
|
||||
$owner = User::getOwnerDataById($item['uid']);
|
||||
return $owner['id'];
|
||||
}
|
||||
|
||||
if (!empty($item['causer-id']) && Contact::isSharing($item['causer-id'], $item['uid'], true)) {
|
||||
$cdata = Contact::getPublicAndUserContactID($item['causer-id'], $item['uid']);
|
||||
if (!empty($cdata['user'])) {
|
||||
|
@ -930,9 +936,7 @@ class Item
|
|||
Contact::checkAvatarCache($item['author-id']);
|
||||
Contact::checkAvatarCache($item['owner-id']);
|
||||
|
||||
if (!Contact::isSharing($item['contact-id'], $item['uid'])) {
|
||||
$item['contact-id'] = self::contactId($item);
|
||||
}
|
||||
|
||||
if (!empty($item['direction']) && in_array($item['direction'], [Conversation::PUSH, Conversation::RELAY]) &&
|
||||
empty($item['origin']) && self::isTooOld($item)) {
|
||||
|
|
Loading…
Reference in a new issue