Fix reply media bug

This commit is contained in:
dangered wolf 2022-10-24 21:51:35 -04:00
parent 9095196946
commit 3943502022
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -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`;
}