Fixup refreshPreKeys and call it whenever a prekey is deleted

This commit is contained in:
lilia 2015-05-05 13:29:42 -07:00
parent 7d0aeac8cb
commit 45a61780af
3 changed files with 8 additions and 2 deletions

View file

@ -123,6 +123,12 @@
},
removePreKey: function(keyId) {
var prekey = new PreKey({id: keyId});
new Promise(function(resolve) {
var accountManager = new textsecure.AccountManager();
accountManager.refreshPreKeys().then(resolve);
});
return new Promise(function(resolve) {
prekey.destroy().then(function() {
resolve();