AP fixes: LD-signature, wrong owner for completed thres, account removal

This commit is contained in:
Michael 2018-10-09 05:04:24 +00:00
parent 4047952703
commit b5d73f840c
4 changed files with 26 additions and 8 deletions

View file

@ -103,9 +103,9 @@ class Notifier
$inboxes = ActivityPub\Transmitter::fetchTargetInboxesforUser(0);
foreach ($inboxes as $inbox) {
logger('Account removal for user ' . $uid . ' to ' . $inbox .' via ActivityPub', LOGGER_DEBUG);
logger('Account removal for user ' . $item_id . ' to ' . $inbox .' via ActivityPub', LOGGER_DEBUG);
Worker::add(['priority' => $a->queue['priority'], 'created' => $a->queue['created'], 'dont_fork' => true],
'APDelivery', Delivery::REMOVAL, '', $inbox, $uid);
'APDelivery', Delivery::REMOVAL, '', $inbox, $item_id);
}
return;