Let removeIdentityKey delete the entire record

Previously we would only clear the publicKey since that was the only attribute,
but now we should delete the entire record. This method is currently only called
from tests.

// FREEBIE
pull/749/head
lilia 8 years ago committed by Scott Nonnenberg
parent d1858de39b
commit 12d9bb61c3

@ -562,7 +562,7 @@
return new Promise(function(resolve, reject) {
var identityKey = new IdentityKey({id: number});
identityKey.fetch().then(function() {
identityKey.save({publicKey: undefined});
identityKey.destroy();
}).fail(function() {
reject(new Error("Tried to remove identity for unknown number"));
});

Loading…
Cancel
Save