Update libaxolotl, un-revert b790f82849
Accidentally reverted in d3c158f
This commit is contained in:
parent
7d3d634a2d
commit
1ab5af338a
2 changed files with 2 additions and 2 deletions
|
@ -37278,7 +37278,7 @@ window.axolotl.protocol = function(storage_interface) {
|
|||
closeSession(open_session); // To be returned and saved later
|
||||
} else {
|
||||
// ...otherwise create an error that the UI will pick up and ask the user if they want to re-negotiate
|
||||
throw new textsecure.IncomingIdentityKeyError(encodedNumber, axolotlInternal.utils.convertToString(message.encode()));
|
||||
throw new Error('Unknown identity key');
|
||||
}
|
||||
}
|
||||
return initSession(false, preKeyPair, signedPreKeyPair, encodedNumber, axolotlInternal.utils.convertToArrayBuffer(message.identityKey), axolotlInternal.utils.convertToArrayBuffer(message.baseKey), undefined)
|
||||
|
|
|
@ -37201,7 +37201,7 @@ window.axolotl.protocol = function(storage_interface) {
|
|||
closeSession(open_session); // To be returned and saved later
|
||||
} else {
|
||||
// ...otherwise create an error that the UI will pick up and ask the user if they want to re-negotiate
|
||||
throw new textsecure.IncomingIdentityKeyError(encodedNumber, axolotlInternal.utils.convertToString(message.encode()));
|
||||
throw new Error('Unknown identity key');
|
||||
}
|
||||
}
|
||||
return initSession(false, preKeyPair, signedPreKeyPair, encodedNumber, axolotlInternal.utils.convertToArrayBuffer(message.identityKey), axolotlInternal.utils.convertToArrayBuffer(message.baseKey), undefined)
|
||||
|
|
Loading…
Reference in a new issue