detect thread-muted posts

This commit is contained in:
taehoon 2019-09-13 22:59:24 -04:00
parent 2f79a7b4a0
commit 6a3f283256
2 changed files with 2 additions and 1 deletions

View file

@ -118,7 +118,7 @@ const Status = {
return hits
},
muted () { return !this.unmuted && ((!this.inProfile && this.status.user.muted) || this.muteWordHits.length > 0) },
muted () { return !this.unmuted && ((!this.inProfile && this.status.user.muted) || this.status.thread_muted || this.muteWordHits.length > 0) },
hideFilteredStatuses () {
return typeof this.$store.state.config.hideFilteredStatuses === 'undefined'
? this.$store.state.instance.hideFilteredStatuses