Merge pull request #13613 from annando/permissions

Ensure to always have stored the receivers
This commit is contained in:
Hypolite Petovan 2023-11-06 04:13:18 -08:00 committed by GitHub
commit 89e105afbe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -1414,10 +1414,12 @@ class Item
}
if (!empty($source) && ($transmit || DI::config()->get('debug', 'store_source'))) {
Post\Activity::insert($item['uri-id'], $source);
Post\Activity::insert($posted_item['uri-id'], $source);
}
if ($transmit) {
ActivityPub\Transmitter::storeReceiversForItem($posted_item);
Worker::add(['priority' => $priority, 'dont_fork' => true], 'Notifier', $notify_type, (int)$posted_item['uri-id'], (int)$posted_item['uid']);
}