diff --git a/src/components/status/status.js b/src/components/status/status.js index 4a1fcfdf..8181b0db 100644 --- a/src/components/status/status.js +++ b/src/components/status/status.js @@ -116,7 +116,7 @@ const Status = { : this.$store.state.config.hideFilteredStatuses }, hideStatus () { - return (!this.hideReply && !this.deleted) && !(this.muted && this.hideFilteredStatuses) + return (this.hideReply || this.deleted) || (this.muted && this.hideFilteredStatuses) }, isFocused () { // retweet or root of an expanded conversation diff --git a/src/components/status/status.vue b/src/components/status/status.vue index 83d7b25a..13e6ccec 100644 --- a/src/components/status/status.vue +++ b/src/components/status/status.vue @@ -1,5 +1,5 @@