From 936ac2e9325d0bf631362637bd9a828418302bf4 Mon Sep 17 00:00:00 2001 From: Ajay Bura Date: Wed, 25 May 2022 08:52:31 +0530 Subject: [PATCH] Make hsApi public --- src/matrix/Session.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/matrix/Session.js b/src/matrix/Session.js index cd676fc5..68bae7ea 100644 --- a/src/matrix/Session.js +++ b/src/matrix/Session.js @@ -133,6 +133,10 @@ export class Session { this.needsKeyBackup = new ObservableValue(false); } + get hsApi() { + return this._hsApi; + } + get fingerprintKey() { return this._e2eeAccount?.identityKeys.ed25519; }