diff options
| author | taehoon <th.dev91@gmail.com> | 2019-09-13 22:59:45 -0400 |
|---|---|---|
| committer | taehoon <th.dev91@gmail.com> | 2019-09-13 22:59:45 -0400 |
| commit | baebf08d20eed14d06f9253e4cc939891955f8cb (patch) | |
| tree | c7aa9233aeb018edeec2560507198aeecaf86209 | |
| parent | 6a3f2832565392526c648c070a2e1275c37f83ea (diff) | |
do not collapse thread muted posts in conversation
| -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 1c38b0f1..d17ba318 100644 --- a/src/components/status/status.js +++ b/src/components/status/status.js @@ -118,7 +118,7 @@ const Status = { return hits }, - muted () { return !this.unmuted && ((!this.inProfile && this.status.user.muted) || this.status.thread_muted || this.muteWordHits.length > 0) }, + muted () { return !this.unmuted && ((!this.inProfile && this.status.user.muted) || (!this.inConversation && this.status.thread_muted) || this.muteWordHits.length > 0) }, hideFilteredStatuses () { return typeof this.$store.state.config.hideFilteredStatuses === 'undefined' ? this.$store.state.instance.hideFilteredStatuses |
