From cfc430eab11212958d2ee47fe86f9804872a78aa Mon Sep 17 00:00:00 2001 From: Tiago Vasconcelos Date: Wed, 15 Mar 2023 12:10:27 +0000 Subject: [PATCH] relays add error fix --- static/js/market.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/market.js b/static/js/market.js index 2040f98..bd71d31 100644 --- a/static/js/market.js +++ b/static/js/market.js @@ -114,7 +114,7 @@ const market = async () => { this.pubkeys.add(this.account.pubkey) } if (relays && relays.length) { - this.relays = relays + this.relays = new Set(relays) } else { this.relays = new Set(defaultRelays) }