From a8205a37906dd19274135e090f5aef4cc606c1bf Mon Sep 17 00:00:00 2001 From: fiatjaf Date: Fri, 10 Apr 2026 09:59:57 -0300 Subject: [PATCH] add relay.primal.net as another fallback big relay for outbox. --- sdk/outbox.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/outbox.go b/sdk/outbox.go index 02f43ab..ac3290f 100644 --- a/sdk/outbox.go +++ b/sdk/outbox.go @@ -55,7 +55,7 @@ func (sys *System) FetchOutboxRelays(ctx context.Context, pubkey nostr.PubKey, n func (sys *System) FetchInboxRelays(ctx context.Context, pubkey nostr.PubKey, n int) []string { rl := sys.FetchRelayList(ctx, pubkey) if len(rl.Items) == 0 || len(rl.Items) > 10 { - return []string{"wss://relay.damus.io", "wss://nos.lol"} + return []string{"wss://relay.damus.io", "wss://nos.lol", "wss://relay.primal.net"} } relays := make([]string, 0, n)