From 1969f9dfe0072b6e548fe98d270145a5a1889c7a Mon Sep 17 00:00:00 2001 From: Gheorghe Pinzaru Date: Tue, 22 Sep 2020 17:56:27 +0300 Subject: [PATCH] Parse childrens in reply text Fixes #11161 Signed-off-by: andrey --- src/status_im/ui/screens/chat/components/reply.cljs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/status_im/ui/screens/chat/components/reply.cljs b/src/status_im/ui/screens/chat/components/reply.cljs index 579fa8dd32..23100dd891 100644 --- a/src/status_im/ui/screens/chat/components/reply.cljs +++ b/src/status_im/ui/screens/chat/components/reply.cljs @@ -36,6 +36,9 @@ (= type "mention") @(re-frame/subscribe [:contacts/contact-name-by-identity literal]) + (seq children) + (get-quoted-text-with-mentions children) + :else literal)) parsed-text)))