diff options
author | Carl Schwan <carl@carlschwan.eu> | 2021-05-24 00:40:30 +0200 |
---|---|---|
committer | Tobias Fella <fella@posteo.de> | 2021-12-01 21:56:11 +0100 |
commit | 1ce9d98cc3957af5a81f6672f3fb86a4dd170ed9 (patch) | |
tree | e3f4d7322d138c02d6c33e80e081c77d51a35d9a /lib | |
parent | 3e51359d1b7891b9a6e4611662c753653c3618bf (diff) | |
download | libquotient-1ce9d98cc3957af5a81f6672f3fb86a4dd170ed9.tar.gz libquotient-1ce9d98cc3957af5a81f6672f3fb86a4dd170ed9.zip |
Uncomment some stuff
Diffstat (limited to 'lib')
-rw-r--r-- | lib/connection.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/connection.cpp b/lib/connection.cpp index 494db170..d652c113 100644 --- a/lib/connection.cpp +++ b/lib/connection.cpp @@ -793,13 +793,13 @@ void Connection::Private::consumeToDeviceEvents(Events&& toDeviceEvents) return; } - visit(*sessionDecryptMessage(event), - [this, senderKey = event.senderKey()](const RoomKeyEvent& roomKeyEvent) { + visit(*sessionDecryptMessage(ee), + [this, senderKey = ee.senderKey()](const RoomKeyEvent& roomKeyEvent) { if (auto* detectedRoom = q->room(roomKeyEvent.roomId())) { - qWarning() << "IT'S A ROOMKEY EVENT, RUUUUUUUUUUUUUUUUUN"; 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(); } }, |