diff options
| author | rinpatch <rinpatch@sdf.org> | 2019-09-04 21:11:13 +0300 |
|---|---|---|
| committer | rinpatch <rinpatch@sdf.org> | 2019-09-04 21:11:13 +0300 |
| commit | 1a5a7bbebf45e93dbd47a99bb4eb05a5be5979f1 (patch) | |
| tree | dbac1ec5d0d69c7db57245d5d040741e0e6610cf /src/components/status/status.js | |
| parent | 66a34b7ecf65ded39882b9e4e7df9bbd2067afc3 (diff) | |
Set thread_muted for all statuses with the same conversation id on
status mute/unmute
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 d037f150..b72d2f58 100644 --- a/src/components/status/status.js +++ b/src/components/status/status.js @@ -117,7 +117,7 @@ const Status = { return hits }, - muted () { return !this.unmuted && (this.status.muted || this.muteWordHits.length > 0) }, + muted () { return !this.unmuted && (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 |
