Merge pull request #109 from fiatjaf/fix/group-forum-tag-filter

fix: remove incorrect '#' prefix from TagMap key in group forum filter
This commit is contained in:
mattn
2026-03-08 11:24:24 +09:00
committed by GitHub

View File

@@ -381,7 +381,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 {