mirror of
https://github.com/friendica/friendica
synced 2025-04-27 13:10:10 +00:00
Delivery count now counts the failed delivery attempts as well
This commit is contained in:
parent
4c4ed63dca
commit
5a1a5a54dc
8 changed files with 49 additions and 11 deletions
|
@ -432,7 +432,7 @@ class Post extends BaseObject
|
|||
'return' => ($a->cmd) ? bin2hex($a->cmd) : '',
|
||||
'delivery' => [
|
||||
'queue_count' => $item['delivery_queue_count'],
|
||||
'queue_done' => $item['delivery_queue_done'],
|
||||
'queue_done' => $item['delivery_queue_done'] + $item['delivery_queue_failed'], /// @todo Possibly display it separately in the future
|
||||
'notifier_pending' => L10n::t('Notifier task is pending'),
|
||||
'delivery_pending' => L10n::t('Delivery to remote servers is pending'),
|
||||
'delivery_underway' => L10n::t('Delivery to remote servers is underway'),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue