aboutsummaryrefslogtreecommitdiff
path: root/src/components/status/status.js
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2020-05-26 01:01:25 +0300
committerHenry Jameson <me@hjkos.com>2020-05-26 01:01:25 +0300
commit9d09e4090fe37b5cbc775e4e9ae8097610ffd952 (patch)
tree13e03f5b092a5982b5cc27be2a401374cc98bc50 /src/components/status/status.js
parent83e5ee549472591b782c36d2321aceec0547cf18 (diff)
multiple fixes
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