Still serve group events even if groups are disabled
Docker / build-and-push-image (push) Successful in 3m0s

This commit is contained in:
Jon Staab
2026-06-15 08:56:25 -07:00
parent 213ce1694d
commit bc8d9b4d85
-4
View File
@@ -248,10 +248,6 @@ func (g *GroupStore) IsGroupEvent(event nostr.Event) bool {
}
func (g *GroupStore) CanRead(pubkey nostr.PubKey, event nostr.Event) bool {
if !g.Config.Groups.Enabled {
return false
}
h := GetGroupIDFromEvent(event)
meta, found := g.GetMetadata(h)