From 77e20ec4464601940610248e8eff29e52f80fe82 Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Mon, 16 May 2022 20:29:44 +0200 Subject: [PATCH] Don't escape html while posting messages --- src/actionshandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/actionshandler.cpp b/src/actionshandler.cpp index ae13f2e76..082e5b2bf 100644 --- a/src/actionshandler.cpp +++ b/src/actionshandler.cpp @@ -106,7 +106,7 @@ void ActionsHandler::postMessage(const QString &text, CustomEmojiModel *cem) { QString rawText = text; - QString cleanedText = text.toHtmlEscaped(); + QString cleanedText = text; auto preprocess = [cem](const QString &it) -> QString { if (cem == nullptr) {