From 9298d7414ece4e0689bf13dd60709dde8c4e98ca Mon Sep 17 00:00:00 2001 From: Jon Staab Date: Fri, 13 Mar 2026 13:47:44 -0700 Subject: [PATCH] Serve group delete events even when the group is gone --- zooid/groups.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zooid/groups.go b/zooid/groups.go index 75406f4..a9b9350 100644 --- a/zooid/groups.go +++ b/zooid/groups.go @@ -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) {