diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-04-16 22:47:48 +0300 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-04-16 22:47:48 +0300 |
commit | 1f38a992a53b71c62077803767473d1bc8a74c58 (patch) | |
tree | a0074f482be156ee3aa6ed9b6a6635566e4afc45 /events | |
parent | 336b66edcc02cbf29f119107777c5bfc6d751c3d (diff) | |
download | libquotient-1f38a992a53b71c62077803767473d1bc8a74c58.tar.gz libquotient-1f38a992a53b71c62077803767473d1bc8a74c58.zip |
Make sure message body is treated as plain text
The previous code deviated from the spec, trying to guess on the content type of body as if there could be HTML in some cases. The spec openly states that 'body' value should always be in plain text.
Diffstat (limited to 'events')
-rw-r--r-- | events/roommessageevent.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/events/roommessageevent.cpp b/events/roommessageevent.cpp index 34315363..f5dcb7d0 100644 --- a/events/roommessageevent.cpp +++ b/events/roommessageevent.cpp @@ -155,9 +155,10 @@ TextContent::TextContent(const QJsonObject& json) mimeType = db.mimeTypeForName("text/html"); body = json["formatted_body"].toString(); } else { - // Best-guessing from the content + // Falling back to plain text, as there's no standard way to describe + // rich text in messages. body = json["body"].toString(); - mimeType = db.mimeTypeForData(body.toUtf8()); + mimeType = db.mimeTypeForName("text/plain"); } } |