diff options
| author | lambda <pleromagit@rogerbraun.net> | 2019-01-30 17:46:52 +0000 |
|---|---|---|
| committer | lambda <pleromagit@rogerbraun.net> | 2019-01-30 17:46:52 +0000 |
| commit | d0df98f99b66cf003973346bcb1f6cdd7e4be33c (patch) | |
| tree | e078dab2b3b72c7fafef0b430724320bfdb74f45 /src | |
| parent | 7b0e3dc471ea731ec199de548e1f6849953a6447 (diff) | |
| parent | 16a5272726ec555d49276e291caa1d0ba71200e4 (diff) | |
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 (limited to 'src')
| -rw-r--r-- | src/components/status/status.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/status/status.js b/src/components/status/status.js index e268ddaa..f7b0357b 100644 --- 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 }, |
