From 0616b30ab35c0f00057177edb5da8479bc600619 Mon Sep 17 00:00:00 2001 From: fiatjaf Date: Mon, 15 Jun 2026 08:29:39 -0300 Subject: [PATCH] blossom: set fasthttp to dial ipv6 addresses. fixes https://github.com/fiatjaf/nak/issues/142 --- nipb0/blossom/client.go | 1 + 1 file changed, 1 insertion(+) diff --git a/nipb0/blossom/client.go b/nipb0/blossom/client.go index b85ac15..2dd77b6 100644 --- a/nipb0/blossom/client.go +++ b/nipb0/blossom/client.go @@ -37,6 +37,7 @@ func createHTTPClient() *fasthttp.Client { Concurrency: 4096, DNSCacheDuration: time.Hour, }, + DialDualStack: true, } dialFunc, _ := d.GetDialFunc(true)