aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
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 () {