logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe
commit: d0df98f99b66cf003973346bcb1f6cdd7e4be33c
parent: 7b0e3dc471ea731ec199de548e1f6849953a6447
Author: lambda <pleromagit@rogerbraun.net>
Date:   Wed, 30 Jan 2019 17:46:52 +0000

Merge branch 'fix/reply-to-using-wrong-id' into 'develop'

Fix #295 reply-to link pointing to wrong id

Closes #295

See merge request pleroma/pleroma-fe!499

Diffstat:

Msrc/components/status/status.js2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/components/status/status.js b/src/components/status/status.js @@ -80,7 +80,7 @@ const Status = { }, replyProfileLink () { if (this.isReply) { - return this.generateUserProfileLink(this.status.in_reply_to_status_id, this.replyToName) + return this.generateUserProfileLink(this.status.in_reply_to_user_id, this.replyToName) } }, retweet () { return !!this.statusoid.retweeted_status },