using wrong method here
This commit is contained in:
parent
af423b1c7f
commit
8d64fa54fe
1 changed files with 1 additions and 1 deletions
|
@ -138,7 +138,7 @@ export class Account {
|
||||||
createOutboundOlmSession(theirIdentityKey, theirOneTimeKey) {
|
createOutboundOlmSession(theirIdentityKey, theirOneTimeKey) {
|
||||||
const newSession = new this._olm.Session();
|
const newSession = new this._olm.Session();
|
||||||
try {
|
try {
|
||||||
newSession.create_outbound_from(this._account, theirIdentityKey, theirOneTimeKey);
|
newSession.create_outbound(this._account, theirIdentityKey, theirOneTimeKey);
|
||||||
return newSession;
|
return newSession;
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
newSession.free();
|
newSession.free();
|
||||||
|
|
Reference in a new issue