Ensure to always have stored the receivers

This commit is contained in:
Michael 2023-11-06 09:57:23 +00:00
parent 5b2b73da92
commit b58cabdc41
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']);
}