diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-03-21 15:49:10 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-03-21 15:49:10 +0900 |
commit | a15c26ccc514fc405fd06d9a88dc333f104fba78 (patch) | |
tree | 52cf0889d2a9ffdc0edc6d71f5bde2d5975acc3c | |
parent | 9e0897ed1c1b4bbec6333bd6674bd8db737b13cb (diff) | |
download | libquotient-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.cpp | 2 |
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) |