From ba323c65d6ab303cc2389353ea5bd82360244f18 Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Tue, 10 Nov 2020 18:30:48 +0100 Subject: [PATCH] fix typo in name --- src/matrix/e2ee/OlmWorker.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/matrix/e2ee/OlmWorker.js b/src/matrix/e2ee/OlmWorker.js index 649db309..31099e65 100644 --- a/src/matrix/e2ee/OlmWorker.js +++ b/src/matrix/e2ee/OlmWorker.js @@ -37,7 +37,7 @@ export class OlmWorker { account.unpickle("", pickle); } - async createOutboundSession(account, newSession, theirIdentityKey, theirOneTimeKey) { + async createOutboundOlmSession(account, newSession, theirIdentityKey, theirOneTimeKey) { const accountPickle = account.pickle(""); const sessionPickle = await this._workerPool.send({type: "olm_create_outbound", accountPickle, theirIdentityKey, theirOneTimeKey}).response(); newSession.unpickle("", sessionPickle);