From e1f60c9ed0114b1c006437e566bdcbe3a39e3e62 Mon Sep 17 00:00:00 2001 From: mprakhov Date: Tue, 27 Dec 2022 12:16:16 +0200 Subject: [PATCH] fix(@desktop/contact): Message from the Contacts Request is not displayed correctly in the chat after the request was accepted --- ui/imports/shared/popups/SendContactRequestModal.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/imports/shared/popups/SendContactRequestModal.qml b/ui/imports/shared/popups/SendContactRequestModal.qml index f87b41e67d..c18758fa04 100644 --- a/ui/imports/shared/popups/SendContactRequestModal.qml +++ b/ui/imports/shared/popups/SendContactRequestModal.qml @@ -85,7 +85,7 @@ StatusModal { enabled: messageInput.valid text: root.buttonText onClicked: { - root.accepted(Utils.escapeHtml(messageInput.text)); + root.accepted(messageInput.text); root.close(); } }