Fix reply username in embed

This commit is contained in:
crpz1 2023-11-06 11:29:31 +00:00
parent 4a96fb6515
commit ebbf42fa68

View file

@ -399,7 +399,7 @@ export const handleStatus = async (
/* Special reply handling if authorText is not overriden */ /* Special reply handling if authorText is not overriden */
if (tweet.replying_to && authorText === Strings.DEFAULT_AUTHOR_TEXT) { 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 */ /* We'll assume it's a thread if it's a reply to themselves */
} else if ( } else if (
tweet.replying_to?.screen_name === tweet.author.screen_name && tweet.replying_to?.screen_name === tweet.author.screen_name &&