From 15853d79dfb3d37db347c3d7d78855f8ffc10af0 Mon Sep 17 00:00:00 2001 From: "P. Reis" Date: Sat, 13 Apr 2024 18:31:30 -0300 Subject: [PATCH] refactor: remove kind 1 event from hydrateEvents in reblog controller --- 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 11f612ce..7e4a4c38 100644 --- a/src/controllers/api/statuses.ts +++ b/src/controllers/api/statuses.ts @@ -229,7 +229,7 @@ const reblogStatusController: AppController = async (c) => { }, c); await hydrateEvents({ - events: [reblogEvent, event], + events: [reblogEvent], relations: ['repost', 'author'], storage: eventsDB, signal: signal,