From 93df89b3048f0c153e1ccc8a1ed874c2d1fa8264 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 11 Jan 2026 20:30:02 +0000 Subject: [PATCH] fix: Remove author filter from releases query The a tag already uniquely identifies the app (32267:pubkey:identifier). Releases may be published by different authors (maintainers, packagers) than the app author, so we should show all releases that reference the app via the a tag, regardless of who published them. --- src/components/nostr/kinds/ZapstoreAppDetailRenderer.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/nostr/kinds/ZapstoreAppDetailRenderer.tsx b/src/components/nostr/kinds/ZapstoreAppDetailRenderer.tsx index bec458a..2465308 100644 --- a/src/components/nostr/kinds/ZapstoreAppDetailRenderer.tsx +++ b/src/components/nostr/kinds/ZapstoreAppDetailRenderer.tsx @@ -156,7 +156,7 @@ export function ZapstoreAppDetailRenderer({ const license = getAppLicense(event); const identifier = getAppIdentifier(event); - // Query for releases that reference this app (from same author only) + // Query for releases that reference this app const releasesFilter = useMemo(() => { if (!identifier) { // Return a filter that matches nothing when no identifier @@ -164,7 +164,6 @@ export function ZapstoreAppDetailRenderer({ } return { kinds: [30063], - authors: [event.pubkey], "#a": [`32267:${event.pubkey}:${identifier}`], }; }, [event.pubkey, identifier]);