Don't escape html while posting messages

This commit is contained in:
Tobias Fella
2022-05-16 20:29:44 +02:00
parent 101b57c581
commit 77e20ec446

View File

@@ -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) {