Commit c2184ce8 authored by JC Brand's avatar JC Brand

Always create a new session

parent fc6982ce
...@@ -71908,12 +71908,9 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_ ...@@ -71908,12 +71908,9 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
}, },
getSessionCipher(jid, id) { getSessionCipher(jid, id) {
if (!this.session_cipher) { const _converse = this.__super__._converse,
const _converse = this.__super__._converse, address = new libsignal.SignalProtocolAddress(jid, id);
address = new libsignal.SignalProtocolAddress(jid, id); this.session_cipher = new window.libsignal.SessionCipher(_converse.omemo_store, address);
this.session_cipher = new window.libsignal.SessionCipher(_converse.omemo_store, address);
}
return this.session_cipher; return this.session_cipher;
}, },
...@@ -332,11 +332,9 @@ ...@@ -332,11 +332,9 @@
}, },
getSessionCipher (jid, id) { getSessionCipher (jid, id) {
if (!this.session_cipher) { const { _converse } = this.__super__,
const { _converse } = this.__super__, address = new libsignal.SignalProtocolAddress(jid, id);
address = new libsignal.SignalProtocolAddress(jid, id); this.session_cipher = new window.libsignal.SessionCipher(_converse.omemo_store, address);
this.session_cipher = new window.libsignal.SessionCipher(_converse.omemo_store, address);
}
return this.session_cipher; return this.session_cipher;
}, },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment