aboutsummaryrefslogtreecommitdiff
path: root/src/components/status/status.js
diff options
context:
space:
mode:
authorlambda <pleromagit@rogerbraun.net>2019-01-28 10:52:24 +0000
committerlambda <pleromagit@rogerbraun.net>2019-01-28 10:52:24 +0000
commit3b1cafc19fc8f094bb2469f194afab5b5464cecb (patch)
tree055a8978d39f87c4824af74a66e38ab880badf70 /src/components/status/status.js
parent2585dfa4c2176389be8823206f7e4eac12633528 (diff)
parent20f113e811bbc87e875a91b1828e2435bdc7751b (diff)
Merge branch 'fix/fix-warnings' into 'develop'
Fix annoying console warnings See merge request pleroma/pleroma-fe!480
Diffstat (limited to 'src/components/status/status.js')
-rw-r--r--src/components/status/status.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/status/status.js b/src/components/status/status.js
index b14a74ec..13e79dd0 100644
--- a/src/components/status/status.js
+++ b/src/components/status/status.js
@@ -125,7 +125,7 @@ const Status = {
return lengthScore > 20
},
isReply () {
- return !!this.status.in_reply_to_status_id
+ return !!(this.status.in_reply_to_status_id && this.status.in_reply_to_user_id)
},
replyToName () {
const user = this.$store.state.users.usersObject[this.status.in_reply_to_user_id]