logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe
commit: 9e2fa50b74eb83e3c3eadb9a68d24ddaa1d9da48
parent: 8575f658528a8370420f4e599410b651221db5af
Author: HJ <30-hj@users.noreply.git.pleroma.social>
Date:   Sat, 27 Apr 2019 07:19:16 +0000

Merge branch 'bugfix/in-reply-to-account-acct' into 'develop'

entity normalizer: hook up in_reply_to_account_acct

See merge request pleroma/pleroma-fe!773

Diffstat:

Msrc/services/entity_normalizer/entity_normalizer.service.js3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/services/entity_normalizer/entity_normalizer.service.js b/src/services/entity_normalizer/entity_normalizer.service.js @@ -195,6 +195,7 @@ export const parseStatus = (data) => { output.summary = pleroma.spoiler_text ? data.pleroma.spoiler_text['text/plain'] : data.spoiler_text output.statusnet_conversation_id = data.pleroma.conversation_id output.is_local = pleroma.local + output.in_reply_to_screen_name = data.pleroma.in_reply_to_account_acct } else { output.text = data.content output.summary = data.spoiler_text @@ -204,8 +205,6 @@ export const parseStatus = (data) => { output.in_reply_to_user_id = data.in_reply_to_account_id output.replies_count = data.replies_count - // Missing!! fix in UI? - // output.in_reply_to_screen_name = ??? if (output.type === 'retweet') { output.retweeted_status = parseStatus(data.reblog) }