From bf22a63404eff6585dafabf7796375fd2a373b6d Mon Sep 17 00:00:00 2001 From: Yasuhiro Matsumoto Date: Sun, 8 Mar 2026 11:13:42 +0900 Subject: [PATCH] fix: remove incorrect '#' prefix from TagMap key in group forum filter The forum subcommand used "#h" as the TagMap key, but TagMap keys should not include the '#' prefix. All other TagMap usages in this file correctly use just the tag letter (e.g. "d", "h"). --- group.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/group.go b/group.go index 8c764ea..7ba70c6 100644 --- a/group.go +++ b/group.go @@ -378,7 +378,7 @@ var group = &cli.Command{ for evt := range sys.Pool.FetchMany(ctx, []string{relay}, nostr.Filter{ Kinds: []nostr.Kind{11}, - Tags: nostr.TagMap{"#h": []string{identifier}}, + Tags: nostr.TagMap{"h": []string{identifier}}, }, nostr.SubscriptionOptions{Label: "nak-nip29"}) { title := evt.Tags.Find("title") if title != nil {