logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://hacktivis.me/git/pleroma-fe.git
commit: 8c8237418cf36e97c76dfe339ab49df4a12be7a4
parent 963f1679e0b24b36c77f15bb7c8e832583f93d79
Author: Henry Jameson <me@hjkos.com>
Date:   Tue,  8 Jun 2021 17:05:20 +0300

fix repeats having wrong mentions

Diffstat:

Msrc/components/status/status.js4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 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 () {