mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-21 00:48:19 +01:00
Add support for new fingerprint format
This will be ready to roll whenever Android/iOS is. // FREEBIE
This commit is contained in:
@@ -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));
|
||||
|
||||
Reference in New Issue
Block a user