logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe
commit: 85e2ca4a0a5e74a2b38c5f7ccea5288fbebb2cfe
parent: 52579b09b17ff7260dc64b673545fb4690aed939
Author: lambda <pleromagit@rogerbraun.net>
Date:   Tue, 15 Jan 2019 20:15:28 +0000

Merge branch 'reply-detection' into 'develop'

Remove reply detection hack

See merge request pleroma/pleroma-fe!464

Diffstat:

Msrc/components/status/status.js14+-------------
1 file changed, 1 insertion(+), 13 deletions(-)

diff --git a/src/components/status/status.js b/src/components/status/status.js @@ -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') {