From cb8450de06bbd5596d44e4c4737a74e29940676d Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Thu, 27 Feb 2020 11:16:26 +0100 Subject: [PATCH] [Room] Wipe session when sending session keys wasnt successful --- lib/src/room.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/room.dart b/lib/src/room.dart index 4f17d85..cf30901 100644 --- a/lib/src/room.dart +++ b/lib/src/room.dart @@ -124,7 +124,7 @@ class Room { print( "[LibOlm] Unable to send the session key to the participating devices: " + e.toString()); - await clearOutboundGroupSession(); + await clearOutboundGroupSession(wipe: true); } return; }