Add support for new fingerprint format

This will be ready to roll whenever Android/iOS is.

// FREEBIE
This commit is contained in:
lilia
2016-08-23 16:12:37 -07:00
parent 254b6621c2
commit 645e05c2b9
4 changed files with 55 additions and 6 deletions

View File

@@ -200,8 +200,13 @@
textsecure.storage.protocol.loadIdentityKey(their_number).then(function(their_key) {
textsecure.storage.protocol.loadIdentityKey(our_number).then(function(our_key) {
var view = new Whisper.KeyVerificationPanelView({
model: { their_key: their_key, your_key: our_key }
}).render();
model: {
your_number: our_number,
their_number: their_number,
their_key: their_key,
your_key: our_key
}
});
this.listenBack(view);
}.bind(this));
}.bind(this));