From 2465180300e14ce1ad28712f4949069526a9ad36 Mon Sep 17 00:00:00 2001 From: Ajay Bura Date: Wed, 25 May 2022 14:48:20 +0530 Subject: [PATCH] Make sessionInfo public --- src/matrix/Session.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/matrix/Session.js b/src/matrix/Session.js index 68bae7ea..ec085fd4 100644 --- a/src/matrix/Session.js +++ b/src/matrix/Session.js @@ -137,6 +137,10 @@ export class Session { return this._hsApi; } + get sessionInfo() { + return this._sessionInfo; + } + get fingerprintKey() { return this._e2eeAccount?.identityKeys.ed25519; }