From ebbf42fa687d22e26849b3b9e6b081c275fe83e7 Mon Sep 17 00:00:00 2001 From: crpz1 <8588315+crpz1@users.noreply.github.com.> Date: Mon, 6 Nov 2023 11:29:31 +0000 Subject: [PATCH] Fix reply username in embed --- src/embed/status.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/embed/status.ts b/src/embed/status.ts index 3c9e410..edfad7a 100644 --- a/src/embed/status.ts +++ b/src/embed/status.ts @@ -399,7 +399,7 @@ export const handleStatus = async ( /* Special reply handling if authorText is not overriden */ if (tweet.replying_to && authorText === Strings.DEFAULT_AUTHOR_TEXT) { - authorText = `↪ Replying to @${tweet.replying_to}`; + authorText = `↪ Replying to @${tweet.replying_to.screen_name}`; /* We'll assume it's a thread if it's a reply to themselves */ } else if ( tweet.replying_to?.screen_name === tweet.author.screen_name &&