From 9a76db85d5d18fd51b8ec2841553fea708e6014a Mon Sep 17 00:00:00 2001 From: CH Chethan Reddy <40890937+Chethan2k1@users.noreply.github.com> Date: Sun, 30 Aug 2020 16:32:28 +0530 Subject: [PATCH] Change ReactionRealtesTo to RelatesTo --- src/DeviceVerificationFlow.h | 2 +- src/Olm.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/DeviceVerificationFlow.h b/src/DeviceVerificationFlow.h index 4c3e5171..6b2ab81f 100644 --- a/src/DeviceVerificationFlow.h +++ b/src/DeviceVerificationFlow.h @@ -127,5 +127,5 @@ private: std::optional room_id; std::optional event_id; TimelineModel *model_; - mtx::common::ReactionRelatesTo relation; + mtx::common::RelatesTo relation; }; diff --git a/src/Olm.cpp b/src/Olm.cpp index 48439fa3..9e1a4ed9 100644 --- a/src/Olm.cpp +++ b/src/Olm.cpp @@ -211,7 +211,7 @@ encrypt_group_message(const std::string &room_id, const std::string &device_id, // relations shouldn't be encrypted... mtx::common::ReplyRelatesTo relation; - mtx::common::ReactionRelatesTo r_relation; + mtx::common::RelatesTo r_relation; if (body["content"].contains("m.relates_to") && body["content"]["m.relates_to"].contains("m.in_reply_to")) {