From cd95c38eec763e639eb923b4dd71214553af14b2 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Sat, 30 Nov 2024 13:13:54 -0600 Subject: [PATCH] 'q' tag should omit marker per NIP-18 --- src/controllers/api/statuses.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/api/statuses.ts b/src/controllers/api/statuses.ts index 98337777..ea7a16b2 100644 --- a/src/controllers/api/statuses.ts +++ b/src/controllers/api/statuses.ts @@ -114,7 +114,7 @@ const createStatusController: AppController = async (c) => { return c.json({ error: 'Quoted post not found.' }, 404); } - tags.push(['q', quoted.id, Conf.relay, '', quoted.pubkey]); + tags.push(['q', quoted.id, Conf.relay, quoted.pubkey]); } if (data.sensitive && data.spoiler_text) {