Merge branch 'reply-detection' into 'develop'

Remove reply detection hack

See merge request pleroma/pleroma-fe!464
This commit is contained in:
lambda 2019-01-15 20:15:28 +00:00
commit 85e2ca4a0a
1 changed files with 1 additions and 13 deletions

View File

@ -117,19 +117,7 @@ const Status = {
return lengthScore > 20
},
isReply () {
if (this.status.in_reply_to_status_id) {
return true
}
// For private replies where we can't see the OP, in_reply_to_status_id will be null.
// So instead, check that the post starts with a @mention.
if (this.status.visibility === 'private') {
var textBody = this.status.text
if (this.status.summary !== null) {
textBody = textBody.substring(this.status.summary.length, textBody.length)
}
return textBody.startsWith('@')
}
return false
return !!this.status.in_reply_to_status_id
},
hideReply () {
if (this.$store.state.config.replyVisibility === 'all') {