From 8c8237418cf36e97c76dfe339ab49df4a12be7a4 Mon Sep 17 00:00:00 2001
From: Henry Jameson <me@hjkos.com>
Date: Tue, 8 Jun 2021 17:05:20 +0300
Subject: [PATCH] fix repeats having wrong mentions

---
 src/components/status/status.js | 4 ++--
 1 file 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 () {