diff options
author | Tobias Fella <fella@posteo.de> | 2022-03-10 21:53:14 +0100 |
---|---|---|
committer | Tobias Fella <fella@posteo.de> | 2022-03-10 21:54:22 +0100 |
commit | 336f8b2e93b43e85b9ea4b9da2b2b34221e657aa (patch) | |
tree | abd72de71d31c7bbac761c688df46cef0466d64b /lib | |
parent | deb1cb4dbbbd4f607e05e9a3b624d3f5f7e2772e (diff) | |
download | libquotient-336f8b2e93b43e85b9ea4b9da2b2b34221e657aa.tar.gz libquotient-336f8b2e93b43e85b9ea4b9da2b2b34221e657aa.zip |
Minor fix
Diffstat (limited to 'lib')
-rw-r--r-- | lib/room.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/room.cpp b/lib/room.cpp index 5d702fba..a1c73666 100644 --- a/lib/room.cpp +++ b/lib/room.cpp @@ -374,8 +374,8 @@ public: auto groupSessionIt = groupSessions.find({ senderKey, sessionId }); if (groupSessionIt == groupSessions.end()) { // qCWarning(E2EE) << "Unable to decrypt event" << eventId - // << "The sender's device has not sent us the keys for " - // "this message" << senderKey << sessionId; + // << "The sender's device has not sent us the keys for " + // "this message"; return QString(); } auto& senderSession = groupSessionIt->second; |