aboutsummaryrefslogtreecommitdiff
path: root/src/components/status/status.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/status/status.js')
-rw-r--r--src/components/status/status.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/components/status/status.js b/src/components/status/status.js
index 95278968..73382521 100644
--- a/src/components/status/status.js
+++ b/src/components/status/status.js
@@ -122,8 +122,6 @@ const Status = {
this.muteWordHits.length > 0
)
const excusesNotToMute = (
- // Currently showing status
- this.unmuted ||
(
this.inProfile && (
// Don't mute user's posts on user timeline (except reblogs)
@@ -137,7 +135,7 @@ const Status = {
// No excuses if post has muted words
) && !this.muteWordHits.length > 0
- return !excusesNotToMute && reasonsToMute
+ return !this.unmuted && !excusesNotToMute && reasonsToMute
},
hideFilteredStatuses () {
return this.mergedConfig.hideFilteredStatuses