Serve group delete events even when the group is gone

This commit is contained in:
Jon Staab
2026-03-13 13:47:44 -07:00
parent dc0c3e1477
commit 9298d7414e
+1 -1
View File
@@ -256,7 +256,7 @@ func (g *GroupStore) CanRead(pubkey nostr.PubKey, event nostr.Event) bool {
meta, found := g.GetMetadata(h)
if !found {
return false
return event.Kind == nostr.KindSimpleGroupDeleteGroup
}
if HasTag(meta.Tags, "hidden") && !g.HasAccess(h, pubkey) {