Miscellaneous wire-up to ensure that failures propagate

FREEBIE
pull/749/head
Scott Nonnenberg 8 years ago
parent 293be5d9f6
commit e91f2d0377

@ -122,7 +122,7 @@
}.bind(this));
},
sendVerifySyncMessage: function(number, state) {
textsecure.storage.protocol.loadIdentityKey(number).then(function(key) {
return textsecure.storage.protocol.loadIdentityKey(number).then(function(key) {
return textsecure.messaging.syncVerification(number, state, key);
});
},

@ -331,10 +331,10 @@
var promises = [];
while (sessions.length > 0) {
promises.push(new Promise(function(res) {
sessions.pop().destroy().then(res);
sessions.pop().destroy().then(res, res);
}));
}
Promise.all(promises).then(resolve);
Promise.all(promises).then(resolve, resolve);
});
});
},
@ -472,7 +472,7 @@
this.archiveSiblingSessions(identifier).then(function() {
resolve(true);
}, reject);
}.bind(this));
}.bind(this), reject);
} else if (this.isNonBlockingApprovalRequired(identityRecord)) {
console.log("Setting approval status...");
identityRecord.save({
@ -547,7 +547,7 @@
identityRecord.save({
}).then(function() {
resolve();
});
}, reject);
} else {
reject(identityRecord.validationError);
}

Loading…
Cancel
Save