forked from AkkomaGang/akkoma-fe
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
This commit is contained in:
commit
d0df98f99b
1 changed files with 1 additions and 1 deletions
|
@ -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 },
|
||||
|
|
Loading…
Reference in a new issue