multiple fixes
This commit is contained in:
parent
83e5ee5494
commit
9d09e4090f
4 changed files with 8 additions and 10 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue