From a15c26ccc514fc405fd06d9a88dc333f104fba78 Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Thu, 21 Mar 2019 15:49:10 +0900 Subject: sanitized(): revert to only dropping Unicode RLO/LRO markers (no HTML escaping) Because user display names (in particular) can be used in non-HTML context. Clients should take care about HTML escaping where appropriate. --- lib/util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/util.cpp b/lib/util.cpp index 59e373c2..6ed93ba0 100644 --- a/lib/util.cpp +++ b/lib/util.cpp @@ -68,7 +68,7 @@ QString QMatrixClient::sanitized(const QString& plainText) auto text = plainText; text.remove(QChar(0x202e)); text.remove(QChar(0x202d)); - return text.toHtmlEscaped(); + return text; } QString QMatrixClient::prettyPrint(const QString& plainText) -- cgit v1.2.3