From 11bdc95a3741fd90b1ca2d371b65aaadadbb3f8f Mon Sep 17 00:00:00 2001 From: fiatjaf Date: Tue, 17 Dec 2024 11:05:27 -0300 Subject: [PATCH] nip46: label subscription. --- nip46/client.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nip46/client.go b/nip46/client.go index 1291a6c..4a84b25 100644 --- a/nip46/client.go +++ b/nip46/client.go @@ -120,7 +120,7 @@ func NewBunker( Since: &now, LimitZero: true, }, - }) + }, nostr.WithLabel("bunker46client")) for ie := range events { if ie.Kind != nostr.KindNostrConnect { continue @@ -151,6 +151,7 @@ func NewBunker( if dispatcher, ok := bunker.listeners.Load(resp.ID); ok { dispatcher <- resp + continue } } }()