damus

nostr ios client
git clone git://jb55.com/damus
Log | Files | Refs | README | LICENSE

commit 0b9a274e67c38a6f27d4309bc0143b4f541c93ff
parent 2bbbb5db6542bd9f7066bdb424112874301a4011
Author: William Casarin <jb55@jb55.com>
Date:   Mon, 15 May 2023 12:54:09 -0700

postbox: change initial retry_after from 2 to 10 seconds

Diffstat:
Mdamus/Util/PostBox.swift | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/damus/Util/PostBox.swift b/damus/Util/PostBox.swift @@ -42,7 +42,7 @@ class PostedEvent { self.on_flush = on_flush self.flushed_once = false self.remaining = remaining.map { - Relayer(relay: $0, attempts: 0, retry_after: 2.0) + Relayer(relay: $0, attempts: 0, retry_after: 10.0) } } }