From a0d8aa9e6210781a8ef6131f646cce45942828cd Mon Sep 17 00:00:00 2001 From: Tiago Vasconcelos Date: Wed, 15 Mar 2023 11:24:35 +0000 Subject: [PATCH] respect stored relay list --- 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 80063b6..e2297d0 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 = new Set([...defaultRelays, ...relays]) + this.relays = relays } else { this.relays = new Set(defaultRelays) }