forked from mystiq/hydrogen-web
c/p error for passing arguments to create_outbound
This commit is contained in:
parent
f5480b7708
commit
2ad34c2dd2
1 changed files with 1 additions and 1 deletions
|
@ -149,7 +149,7 @@ class MessageHandler {
|
||||||
const newSession = new this._olm.Session();
|
const newSession = new this._olm.Session();
|
||||||
try {
|
try {
|
||||||
account.unpickle("", accountPickle);
|
account.unpickle("", accountPickle);
|
||||||
newSession.create_outbound(account, newSession, theirIdentityKey, theirOneTimeKey);
|
newSession.create_outbound(account, theirIdentityKey, theirOneTimeKey);
|
||||||
return newSession.pickle("");
|
return newSession.pickle("");
|
||||||
} finally {
|
} finally {
|
||||||
account.free();
|
account.free();
|
||||||
|
|
Loading…
Reference in a new issue