damus

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

commit 7a1269bd688df74a8bd8f46d0dd83e0c0a5b7002
parent acb4e6d17ef90d83e4d89395e914f74456de0e7a
Author: cr0bar <cr0bar@users.noreply.github.com>
Date:   Mon, 10 Jul 2023 21:47:50 +0100

Fix for test issue due to recently implemented RelayPool change
Diffstat:
Mdamus/Nostr/RelayPool.swift | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/damus/Nostr/RelayPool.swift b/damus/Nostr/RelayPool.swift @@ -44,7 +44,7 @@ class RelayPool { } if let self, path.status != self.last_network_status { - for relay in relays { + for relay in self.relays { relay.connection.log?.add("Network state: \(path.status)") } }