Properly detect thread-muted posts and set with_muted when fetching

notifications
This commit is contained in:
rinpatch 2019-09-04 12:19:39 +03:00
parent a1aada2454
commit 66a34b7ecf
2 changed files with 6 additions and 1 deletions

View file

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