mirror of
https://github.com/friendica/friendica
synced 2024-11-09 22:22:53 +00:00
Merge pull request #14366 from annando/issue-14364
Issue 14364: Fix post delivery of groups
This commit is contained in:
commit
d4f91a92f2
1 changed files with 3 additions and 3 deletions
|
@ -547,9 +547,9 @@ class Item
|
||||||
$item['private'] = $private_group ? ItemModel::PRIVATE : ItemModel::UNLISTED;
|
$item['private'] = $private_group ? ItemModel::PRIVATE : ItemModel::UNLISTED;
|
||||||
|
|
||||||
if ($only_to_group) {
|
if ($only_to_group) {
|
||||||
$pcid = Contact::getPublicContactId($group_contact['id'], $item['uid']);
|
$ucid = Contact::getUserContactId($group_contact['id'], $item['uid']);
|
||||||
if ($pcid) {
|
if ($ucid) {
|
||||||
$item['owner-id'] = $pcid;
|
$item['owner-id'] = $ucid;
|
||||||
unset($item['owner-link']);
|
unset($item['owner-link']);
|
||||||
unset($item['owner-name']);
|
unset($item['owner-name']);
|
||||||
unset($item['owner-avatar']);
|
unset($item['owner-avatar']);
|
||||||
|
|
Loading…
Reference in a new issue