multiple fixes

This commit is contained in:
Henry Jameson 2020-05-26 01:01:25 +03:00
parent 83e5ee5494
commit 9d09e4090f
4 changed files with 8 additions and 10 deletions

View file

@ -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