From 48ce669a3d11c1f4a94ede373b58c7740c52eb35 Mon Sep 17 00:00:00 2001 From: fiatjaf Date: Tue, 4 Feb 2025 10:33:28 -0300 Subject: [PATCH] sdk: increase sanity threshold of relay lists. --- sdk/outbox.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/outbox.go b/sdk/outbox.go index 0bd521e..b59ee19 100644 --- a/sdk/outbox.go +++ b/sdk/outbox.go @@ -50,7 +50,7 @@ func (sys *System) FetchOutboxRelays(ctx context.Context, pubkey string, n int) // the relays they intend to receive notifications from. func (sys *System) FetchInboxRelays(ctx context.Context, pubkey string, n int) []string { rl := sys.FetchRelayList(ctx, pubkey) - if len(rl.Items) == 0 || len(rl.Items) > 7 { + if len(rl.Items) == 0 || len(rl.Items) > 10 { return []string{"wss://relay.damus.io", "wss://nos.lol"} }