mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Fix reply media bug
This commit is contained in:
parent
9095196946
commit
3943502022
1 changed files with 1 additions and 1 deletions
|
@ -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`;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue