aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorCarl Schwan <carl@carlschwan.eu>2021-05-24 00:40:30 +0200
committerTobias Fella <fella@posteo.de>2021-12-01 21:56:11 +0100
commit1ce9d98cc3957af5a81f6672f3fb86a4dd170ed9 (patch)
treee3f4d7322d138c02d6c33e80e081c77d51a35d9a /lib
parent3e51359d1b7891b9a6e4611662c753653c3618bf (diff)
downloadlibquotient-1ce9d98cc3957af5a81f6672f3fb86a4dd170ed9.tar.gz
libquotient-1ce9d98cc3957af5a81f6672f3fb86a4dd170ed9.zip
Uncomment some stuff
Diffstat (limited to 'lib')
-rw-r--r--lib/connection.cpp8
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();
}
},