logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe
commit: 28d1571530277e54be08e15d11e030f7722d1807
parent: f48e3d0db8029701461250bb8f47ec33f0d68606
Author: lambda <pleromagit@rogerbraun.net>
Date:   Fri, 25 Jan 2019 10:10:27 +0000

Merge branch 'hotfix/summary-html' into 'develop'

entity normalizer: provide summary_html property

See merge request pleroma/pleroma-fe!475

Diffstat:

Msrc/services/entity_normalizer/entity_normalizer.service.js2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/services/entity_normalizer/entity_normalizer.service.js b/src/services/entity_normalizer/entity_normalizer.service.js @@ -164,6 +164,7 @@ export const parseStatus = (data) => { } output.summary = data.spoiler_text + output.summary_html = data.spoiler_text output.external_url = data.url // FIXME missing!! @@ -203,6 +204,7 @@ export const parseStatus = (data) => { } output.summary = data.summary + output.summary_html = data.summary_html output.external_url = data.external_url output.is_local = data.is_local }