aboutsummaryrefslogtreecommitdiff
path: root/src/components/status/status.js
diff options
context:
space:
mode:
authorshpuld <shp@cock.li>2019-01-28 19:02:46 +0200
committershpuld <shp@cock.li>2019-01-28 19:02:46 +0200
commit51024a2c8af9d88b07c050b7502fa62843aa4ba2 (patch)
tree4c6f61e08f209d6a89a8a7a5e58991c2445f9e13 /src/components/status/status.js
parent676acdbf82726cd78ce8611d4c6ba78c58b8fc4c (diff)
parentbb2ee04f04dac177407f7cfbc8709ed4cd9965ff (diff)
Merge branch 'develop' into feat/media-modal
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 2d485616..9730eded 100644
--- a/src/components/status/status.js
+++ b/src/components/status/status.js
@@ -128,7 +128,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]