Channel relay reshares are now private follwers posts

This commit is contained in:
Michael 2024-02-01 15:59:04 +00:00
parent 665316c14d
commit e60f3e1a99
1 changed files with 5 additions and 1 deletions

View File

@ -1501,7 +1501,11 @@ class Item
];
if (!Post::exists($condition)) {
Logger::debug('Reshare post', ['uid' => $uid, 'uri-id' => $uri_id]);
self::performActivity($item['id'], 'announce', $uid);
$allow_cid = '';
$allow_gid = '<' . Circle::FOLLOWERS . '>';
$deny_cid = '';
$deny_gid = '';
self::performActivity($item['id'], 'announce', $uid, $allow_cid, $allow_gid, $deny_cid, $deny_gid);
} else {
Logger::debug('Reshare already exists', ['uid' => $uid, 'uri-id' => $uri_id]);
}