From c9302cae6a30351d74f096cac1796bb0f1330a12 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Thu, 30 May 2024 11:31:33 -0500 Subject: [PATCH] Fix reblogs showing up in replies --- src/views/mastodon/statuses.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/views/mastodon/statuses.ts b/src/views/mastodon/statuses.ts index fe03857f..bf71b019 100644 --- a/src/views/mastodon/statuses.ts +++ b/src/views/mastodon/statuses.ts @@ -138,6 +138,8 @@ async function renderReblog(event: DittoEvent, opts: RenderStatusOpts) { return { ...status, + in_reply_to_id: null, + in_reply_to_account_id: null, reblog, }; }