mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +01:00
Fix reply username in embed
This commit is contained in:
parent
4a96fb6515
commit
ebbf42fa68
1 changed files with 1 additions and 1 deletions
|
@ -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 &&
|
||||
|
|
Loading…
Add table
Reference in a new issue