From cd67ca544014ea896cf9f2d177c10e6b068c289a Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 22 Jan 2026 12:18:24 +0000 Subject: [PATCH] feat: show all reposts regardless of content Remove content filtering for reposts - now all kind 6 and 16 events are shown as system messages. Quote reposts (with content) will just display as 'reposted' without showing the quote text, keeping the chat interface clean and consistent. --- src/lib/chat/adapters/nip-10-adapter.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/chat/adapters/nip-10-adapter.ts b/src/lib/chat/adapters/nip-10-adapter.ts index 5cfefb2..63d18d2 100644 --- a/src/lib/chat/adapters/nip-10-adapter.ts +++ b/src/lib/chat/adapters/nip-10-adapter.ts @@ -817,8 +817,8 @@ export class Nip10Adapter extends ChatProtocolAdapter { } // Handle reposts (kind 6, 16) - simple system messages - // Ignore reposts with content (quotes) - if ((event.kind === 6 || event.kind === 16) && !event.content.trim()) { + // Content is ignored even if present (quotes) + if (event.kind === 6 || event.kind === 16) { return this.repostToMessage(event, conversationId); }