aboutsummaryrefslogtreecommitdiff
path: root/src/components/status/status.js
diff options
context:
space:
mode:
authorrinpatch <rinpatch@sdf.org>2019-09-04 12:19:39 +0300
committerrinpatch <rinpatch@sdf.org>2019-09-04 12:20:33 +0300
commit66a34b7ecf65ded39882b9e4e7df9bbd2067afc3 (patch)
treee86bc5c95fcc1ff3cf353acad8716e4d91a6c0be /src/components/status/status.js
parenta1aada245457c02b3cf37055e6f5ca9f08232362 (diff)
Properly detect thread-muted posts and set `with_muted` when fetching
notifications
Diffstat (limited to 'src/components/status/status.js')
-rw-r--r--src/components/status/status.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/status/status.js b/src/components/status/status.js
index 502d9583..d037f150 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.user.muted || this.muteWordHits.length > 0) },
+ muted () { return !this.unmuted && (this.status.muted || this.muteWordHits.length > 0) },
hideFilteredStatuses () {
return typeof this.$store.state.config.hideFilteredStatuses === 'undefined'
? this.$store.state.instance.hideFilteredStatuses