This commit is contained in:
Ivan FB 2026-05-13 12:01:08 +02:00
parent a97de2abf6
commit 7db8e80a65
No known key found for this signature in database
GPG Key ID: DF0C67A04C543270

View File

@ -227,8 +227,10 @@ proc evaluateAndCleanUp(self: SendService) =
# remove propagated messages when no store confirmation will follow
self.taskCache.keepItIf(
not (it.state == DeliveryState.SuccessfullyPropagated and
(it.isEphemeral() or not self.checkStoreForMessages))
not (
it.state == DeliveryState.SuccessfullyPropagated and
(it.isEphemeral() or not self.checkStoreForMessages)
)
)
proc trySendMessages(self: SendService) {.async.} =