aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/connection.cpp7
-rw-r--r--lib/encryptionmanager.h1
2 files changed, 3 insertions, 5 deletions
diff --git a/lib/connection.cpp b/lib/connection.cpp
index d7115885..ab5e030b 100644
--- a/lib/connection.cpp
+++ b/lib/connection.cpp
@@ -797,13 +797,12 @@ void Connection::Private::consumeToDeviceEvents(Events&& toDeviceEvents)
return;
}
- visit(*sessionDecryptMessage(ee),
- [this, senderKey = ee.senderKey()](const RoomKeyEvent& roomKeyEvent) {
+ visit(*sessionDecryptMessage(event),
+ [this, senderKey = event.senderKey()](const RoomKeyEvent& roomKeyEvent) {
if (auto* detectedRoom = q->room(roomKeyEvent.roomId())) {
detectedRoom->handleRoomKeyEvent(roomKeyEvent, senderKey);
} else {
- qCDebug(E2EE)
- << "Encrypted event room id" << roomKeyEvent.roomId()
+ qCDebug(E2EE) << "Encrypted event room id" << roomKeyEvent.roomId()
<< "is not found at the connection" << q->objectName();
}
},
diff --git a/lib/encryptionmanager.h b/lib/encryptionmanager.h
index db9bff07..17f4f853 100644
--- a/lib/encryptionmanager.h
+++ b/lib/encryptionmanager.h
@@ -19,7 +19,6 @@ class EncryptionManager : public QObject {
public:
explicit EncryptionManager(QObject* parent = nullptr);
~EncryptionManager();
-
QString sessionDecryptMessage(const QJsonObject& personalCipherObject,
const QByteArray& senderKey, std::unique_ptr<QOlmAccount>& account);