aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTobias Fella <fella@posteo.de>2022-01-30 21:20:00 +0100
committerTobias Fella <fella@posteo.de>2022-01-30 21:20:00 +0100
commit2fc62d38e8f748d1a78baca8b6f2df40e7cfa1a9 (patch)
tree19aaa311e8a8063f04355f2b4beef85b1089f6ee /lib
parent0be5e13ce90c783ab49ae1f3223e9d84538b9112 (diff)
downloadlibquotient-2fc62d38e8f748d1a78baca8b6f2df40e7cfa1a9.tar.gz
libquotient-2fc62d38e8f748d1a78baca8b6f2df40e7cfa1a9.zip
Use room() instead of provideRoom()
Diffstat (limited to 'lib')
-rw-r--r--lib/connection.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/connection.cpp b/lib/connection.cpp
index 89b80909..dbc6261d 100644
--- a/lib/connection.cpp
+++ b/lib/connection.cpp
@@ -2068,7 +2068,7 @@ QString Connection::e2eeDataDir() const
#ifdef Quotient_E2EE_ENABLED
QJsonObject Connection::decryptNotification(const QJsonObject &notification)
{
- auto room = provideRoom(notification["room_id"].toString());
+ auto room = this->room(notification["room_id"].toString());
auto event = makeEvent<EncryptedEvent>(notification["event"].toObject());
auto decrypted = room->decryptMessage(*event);
if(!decrypted) {