From fdbabae97d6534ec6d42e89d0593c075220ce896 Mon Sep 17 00:00:00 2001 From: hzrd149 Date: Sat, 1 Jul 2023 14:55:39 -0500 Subject: [PATCH] add missing root tag --- src/helpers/nostr/stream.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers/nostr/stream.ts b/src/helpers/nostr/stream.ts index c890e8829..5fc23647f 100644 --- a/src/helpers/nostr/stream.ts +++ b/src/helpers/nostr/stream.ts @@ -66,7 +66,7 @@ export function getATag(stream: ParsedStream) { export function buildChatMessage(stream: ParsedStream, content: string) { const template: DraftNostrEvent = { - tags: [["a", getATag(stream)]], + tags: [["a", getATag(stream), "", "root"]], content, created_at: dayjs().unix(), kind: 1311,