Merge pull request #7599 from annando/delivery-counter
Fixes the delivery counter for edits
This commit is contained in:
commit
f90827d020
|
@ -543,13 +543,13 @@ class Notifier
|
||||||
Hook::callAll('notifier_end', $target_item);
|
Hook::callAll('notifier_end', $target_item);
|
||||||
|
|
||||||
// Workaround for pure connector posts
|
// Workaround for pure connector posts
|
||||||
if ($delivery_queue_count == 0) {
|
|
||||||
ItemDeliveryData::incrementQueueDone($target_item['id']);
|
|
||||||
$delivery_queue_count = 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (in_array($cmd, [Delivery::POST, Delivery::POKE])) {
|
if (in_array($cmd, [Delivery::POST, Delivery::POKE])) {
|
||||||
ItemDeliveryData::update($target_item['id'], ['queue_count' => $delivery_queue_count]);
|
if ($delivery_queue_count == 0) {
|
||||||
|
ItemDeliveryData::incrementQueueDone($target_item['id']);
|
||||||
|
$delivery_queue_count = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
ItemDeliveryData::incrementQueueCount($target_item['id'], $delivery_queue_count);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue