aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2021-06-08 17:05:20 +0300
committerHenry Jameson <me@hjkos.com>2021-06-08 17:14:22 +0300
commit8c8237418cf36e97c76dfe339ab49df4a12be7a4 (patch)
treeb1ffa63efbf11a22592e2585189d49f265c50a29 /src
parent963f1679e0b24b36c77f15bb7c8e832583f93d79 (diff)
fix repeats having wrong mentions
Diffstat (limited to 'src')
-rw-r--r--src/components/status/status.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/status/status.js b/src/components/status/status.js
index eb0af098..9b1c1b9c 100644
--- a/src/components/status/status.js
+++ b/src/components/status/status.js
@@ -170,9 +170,9 @@ const Status = {
return this.mergedConfig.mentionsOwnLine
},
mentions () {
- return this.statusoid.attentions.filter(attn => {
+ return this.status.attentions.filter(attn => {
return attn.screen_name !== this.replyToName &&
- attn.screen_name !== this.statusoid.user.screen_name
+ attn.screen_name !== this.status.user.screen_name
})
},
hasMentions () {