From f951bc436e9cc763a26987b355b85c7d5156504f Mon Sep 17 00:00:00 2001 From: eris Date: Mon, 1 Aug 2022 05:57:46 +0000 Subject: [PATCH] Hide muted replies if muted threads enabled --- src/components/status/status.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/status/status.js b/src/components/status/status.js index 434668e2..2959c3fd 100644 --- a/src/components/status/status.js +++ b/src/components/status/status.js @@ -358,7 +358,7 @@ const Status = { return (!this.shouldNotMute) && ( (this.muted && this.hideFilteredStatuses) || (this.userIsMuted && this.hideMutedUsers) || - (this.status.thread_muted && this.hideMutedThreads) || + ((this.status.thread_muted || this.mentionsMutedUser) && this.hideMutedThreads) || (this.muteWordHits.length > 0 && this.hideWordFilteredPosts) || (this.mentionsBlockedUser && this.hideThreadsWithBlockedUsers) )