From c2635c1f2039058209ee5c9d88790039c06873ed Mon Sep 17 00:00:00 2001 From: fiatjaf Date: Sat, 23 Aug 2025 09:16:25 -0300 Subject: [PATCH] eliminate ID option that was being ignored. --- subscription.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/subscription.go b/subscription.go index 7740829..bea4c2e 100644 --- a/subscription.go +++ b/subscription.go @@ -56,9 +56,6 @@ type SubscriptionOptions struct { // Label puts a label on the subscription (it is prepended to the automatic id) that is sent to relays. Label string - // ID sets the ID absolutely on a subscription. Do not touch unless you know what you're doing. - ID string - // CheckDuplicate is a function that, when present, is ran on events before they're parsed. // if it returns true the event will be discarded and not processed further. CheckDuplicate func(id ID, relay string) bool