From a4cc9f53a888731b362bfe7c351f4008d0027875 Mon Sep 17 00:00:00 2001 From: Jon Staab Date: Mon, 15 Jun 2026 09:29:12 -0700 Subject: [PATCH] If groups are disabled, treat h tagged events as regular events --- zooid/groups.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/zooid/groups.go b/zooid/groups.go index a9b9350..a11d762 100644 --- a/zooid/groups.go +++ b/zooid/groups.go @@ -227,6 +227,10 @@ func (g *GroupStore) HasAccess(h string, pubkey nostr.PubKey) bool { } func (g *GroupStore) IsGroupEvent(event nostr.Event) bool { + if !g.Config.Groups.Enabled { + return false + } + if slices.Contains(nip29.MetadataEventKinds, event.Kind) { return true }