Fix some nulls in relations

This commit is contained in:
Nicolas Werner 2021-01-08 12:48:39 +01:00
parent e9519689f1
commit cc9de7f3b0
1 changed files with 6 additions and 7 deletions

View File

@ -579,13 +579,12 @@ encrypt_group_message(const std::string &room_id, const std::string &device_id,
mtx::common::RelatesTo r_relation;
// relations shouldn't be encrypted...
if (body["content"].contains("m.relates_to") &&
body["content"]["m.relates_to"].contains("m.in_reply_to")) {
if (body["content"].contains("m.relates_to")) {
if (body["content"]["m.relates_to"].contains("m.in_reply_to")) {
relation = body["content"]["m.relates_to"];
body["content"].erase("m.relates_to");
} else if (body["content"]["m.relates_to"].contains("event_id")) {
r_relation = body["content"]["m.relates_to"];
body["content"].erase("m.relates_to");
}
}
auto payload = olm::client()->encrypt_group_message(session.get(), body.dump());