diff options
| author | taehoon <th.dev91@gmail.com> | 2019-09-13 22:59:24 -0400 |
|---|---|---|
| committer | taehoon <th.dev91@gmail.com> | 2019-09-13 22:59:24 -0400 |
| commit | 6a3f2832565392526c648c070a2e1275c37f83ea (patch) | |
| tree | 3bafae720ec889264efe5e316841e559e7e34aa5 /src/components/status/status.js | |
| parent | 2f79a7b4a0e54092eff8a0af385ce6fe4c300cb7 (diff) | |
detect thread-muted posts
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 e8966f47..1c38b0f1 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.muteWordHits.length > 0) }, + muted () { return !this.unmuted && ((!this.inProfile && 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 |
