1
0
Fork 0
mirror of https://git.youjo.love/youjo/youjo-fe.git synced 2025-04-01 06:42:13 +02:00

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

Fix  reply-to link pointing to wrong id

Closes 

See merge request 
This commit is contained in:
lambda 2019-01-30 17:46:52 +00:00
commit d0df98f99b

View file

@ -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 },