diff options
Diffstat (limited to 'src/components/status/status.js')
| -rw-r--r-- | src/components/status/status.js | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
