From 3943502022c17c436bb05248c5aa1c726274d8f3 Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Mon, 24 Oct 2022 21:51:35 -0400 Subject: [PATCH] Fix reply media bug --- src/status.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/status.ts b/src/status.ts index e01dad1..0fc144d 100644 --- a/src/status.ts +++ b/src/status.ts @@ -309,7 +309,7 @@ export const handleStatus = async ( if (tweet.replying_to && authorText === Strings.DEFAULT_AUTHOR_TEXT) { authorText = `↪ Replying to @${tweet.replying_to}`; /* We'll assume it's a thread if it's a reply to themselves */ - } else if (tweet.replying_to === tweet.author.screen_name) { + } else if (tweet.replying_to === tweet.author.screen_name && authorText === Strings.DEFAULT_AUTHOR_TEXT) { authorText = `↪ A part of @${tweet.author.screen_name}'s thread`; }