From 8ff64df4dd7bc93f1207c5ba79da5597b30eae7c Mon Sep 17 00:00:00 2001
From: multiple creatures <dev@multiple-creature.party>
Date: Sun, 19 May 2019 07:34:48 -0500
Subject: render normalized status in reply indicator so that custom emojis are
 shown

---
 .../flavours/glitch/features/compose/components/reply_indicator.js      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/javascript/flavours/glitch/features/compose/components/reply_indicator.js b/app/javascript/flavours/glitch/features/compose/components/reply_indicator.js
index f96ea4c5e..4a638ff51 100644
--- a/app/javascript/flavours/glitch/features/compose/components/reply_indicator.js
+++ b/app/javascript/flavours/glitch/features/compose/components/reply_indicator.js
@@ -47,7 +47,7 @@ class ReplyIndicator extends ImmutablePureComponent {
     }
 
     const account     = status.get('account');
-    const content     = status.get('content');
+    const content     = status.get('contentHtml');
     const attachments = status.get('media_attachments');
 
     //  The result.
-- 
cgit