aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2019-03-21 15:49:10 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2019-03-21 15:49:10 +0900
commita15c26ccc514fc405fd06d9a88dc333f104fba78 (patch)
tree52cf0889d2a9ffdc0edc6d71f5bde2d5975acc3c
parent9e0897ed1c1b4bbec6333bd6674bd8db737b13cb (diff)
downloadlibquotient-a15c26ccc514fc405fd06d9a88dc333f104fba78.tar.gz
libquotient-a15c26ccc514fc405fd06d9a88dc333f104fba78.zip
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.
-rw-r--r--lib/util.cpp2
1 files changed, 1 insertions, 1 deletions
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)