From 49f983f9489f054ac28c23d29202609a964da12f Mon Sep 17 00:00:00 2001 From: Patrick PReis Date: Fri, 5 Dec 2025 18:37:20 -0300 Subject: [PATCH] fix: reply now is always false for kinds 21, 22, 34235, 34236 --- packages/ditto/storages/DittoPgStore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ditto/storages/DittoPgStore.ts b/packages/ditto/storages/DittoPgStore.ts index f4b1679b..e226d785 100644 --- a/packages/ditto/storages/DittoPgStore.ts +++ b/packages/ditto/storages/DittoPgStore.ts @@ -491,7 +491,7 @@ export class DittoPgStore extends NPostgres { } else if (event.kind === 6) { ext.reply = 'false'; } else if ([21, 22, 34235, 34236].includes(event.kind)) { - ext.reply = event.tags.some(([name]) => name === 'e').toString(); + ext.reply = 'false' // reply must be handled in another way: https://github.com/nostr-protocol/nips/issues/2146 } if ([1, 20, 30023].includes(event.kind)) {