From 53ecc9f31b8dd027e93c81cff11c41557f9228a1 Mon Sep 17 00:00:00 2001 From: umany <1769962+umany@users.noreply.github.com> Date: Thu, 1 Feb 2024 00:23:54 +0900 Subject: [PATCH] Fix unavailable retweets are missing on the profile timeline --- script.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/script.js b/script.js index 2b3afcf..8cc19e1 100644 --- a/script.js +++ b/script.js @@ -4701,6 +4701,8 @@ function shouldHideProfileTimelineItem(type) { return config.hideProfileRetweets case 'UNAVAILABLE_QUOTE_TWEET': return config.hideUnavailableQuoteTweets + case 'UNAVAILABLE_RETWEET': + return config.hideUnavailableQuoteTweets || config.hideProfileRetweets default: return true }