damus

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

commit 1baae90bebb9bb1fab8f05377aa0e480f1cdf0f1
parent 2b832120ec494a9f3052d01828b8a0acdb77a1bd
Author: Steven Briscoe <me@stevenbriscoe.com>
Date:   Mon, 23 Jan 2023 16:31:02 +0000

Fix to allow relays using ws://

Changelog-Fixed: allow ws:// relays again

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

diff --git a/damus/Views/ConfigView.swift b/damus/Views/ConfigView.swift @@ -154,7 +154,7 @@ struct ConfigView: View { return } - if relay.starts(with: "wss://") == false { + if relay.starts(with: "wss://") == false && relay.starts(with: "ws://") == false { relay = "wss://" + relay }