From 1403c7d2cd95b1211e672dc43d8b485603cc7c86 Mon Sep 17 00:00:00 2001 From: fiatjaf Date: Tue, 21 Jul 2026 20:42:52 -0300 Subject: [PATCH] fetch: use more outbox relays. --- fetch.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fetch.go b/fetch.go index fd9b1db..ba372d9 100644 --- a/fetch.go +++ b/fetch.go @@ -101,7 +101,7 @@ var fetch = &cli.Command{ sys.Hints.Save(authorHint, nostr.NormalizeURL(url), hints.LastInHint, nostr.Now()) } - for _, url := range sys.FetchOutboxRelays(ctx, authorHint, 3) { + for _, url := range sys.FetchOutboxRelays(ctx, authorHint, 6) { relays = append(relays, url) } }