1
0
Fork 0

Merge remote-tracking branch 'upstream/develop' into dbstructure

This commit is contained in:
Michael 2020-05-11 18:54:19 +00:00
commit 57b4c70f9e
2 changed files with 5 additions and 4 deletions

View file

@ -68,13 +68,14 @@ class APDelivery
}
}
// This should never fail and is temporariy (until the move to )
// This should never fail and is temporariy (until the move to the "post" structure)
$item = Item::selectFirst(['uri-id'], ['id' => $target_id]);
$uriid = $item['uri-id'] ?? 0;
if (!$success && !Worker::defer() && in_array($cmd, [Delivery::POST])) {
Post\DeliveryData::incrementQueueFailed($item['uri-id']);
Post\DeliveryData::incrementQueueFailed($uriid);
} elseif ($success && in_array($cmd, [Delivery::POST])) {
Post\DeliveryData::incrementQueueDone($item['uri-id'], Post\DeliveryData::ACTIVITYPUB);
Post\DeliveryData::incrementQueueDone($uriid, Post\DeliveryData::ACTIVITYPUB);
}
}
}