From 792f0cf9a0ce2cc993582869feeb9d6f526ce433 Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Thu, 3 Sep 2020 15:32:33 +0200 Subject: [PATCH] log our identity keys after load --- src/matrix/Session.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/matrix/Session.js b/src/matrix/Session.js index 1e3f8382..652ac18e 100644 --- a/src/matrix/Session.js +++ b/src/matrix/Session.js @@ -60,6 +60,7 @@ export class Session { // called once this._e2eeAccount is assigned _setupEncryption() { + console.log("loaded e2ee account with keys", this._e2eeAccount.identityKeys); const senderKeyLock = new LockMap(); const olmDecryption = new OlmDecryption({ account: this._e2eeAccount,