Merge pull request #469 from crpz1/main

Fix reply username in embed
This commit is contained in:
dangered wolf 2023-11-06 15:20:53 -05:00 committed by GitHub
commit a626954c43
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23

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 &&