aboutsummaryrefslogtreecommitdiff
path: root/events
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2017-04-16 22:47:48 +0300
committerKitsune Ral <Kitsune-Ral@users.sf.net>2017-04-16 22:47:48 +0300
commit1f38a992a53b71c62077803767473d1bc8a74c58 (patch)
treea0074f482be156ee3aa6ed9b6a6635566e4afc45 /events
parent336b66edcc02cbf29f119107777c5bfc6d751c3d (diff)
downloadlibquotient-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.cpp5
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");
}
}