From 46ed9cc3336231d418449046ff5486b7abc9c925 Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Wed, 1 Jun 2022 23:32:16 +0200 Subject: Immediately create a new megolm session when user leaves instead of deferring until sending event --- lib/room.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/room.cpp b/lib/room.cpp index c745975f..9e2a5053 100644 --- a/lib/room.cpp +++ b/lib/room.cpp @@ -521,7 +521,9 @@ Room::Room(Connection* connection, QString id, JoinState initialJoinState) if (!usesEncryption()) { return; } - d->currentOutboundMegolmSession = nullptr; + if (d->hasValidMegolmSession()) { + d->createMegolmSession(); + } qCDebug(E2EE) << "Invalidating current megolm session because user left"; }); -- cgit v1.2.3