Return created_at and keyId with signed prekeys

Use `.get()` rather than `attributes.property` access because created_at
may not be present for old keys

// FREEBIE
pull/749/head
lilia 8 years ago
parent 829d147d19
commit 54536360ff

@ -148,8 +148,10 @@
return new Promise(function(resolve) {
prekey.fetch().then(function() {
resolve({
pubKey: prekey.attributes.publicKey,
privKey: prekey.attributes.privateKey
pubKey : prekey.get('publicKey'),
privKey : prekey.get('privateKey'),
created_at : prekey.get('created_at'),
keyId : prekey.get('id')
});
}).fail(resolve);
});

Loading…
Cancel
Save