Throw UnregisteredUserErrors in getKeysForNumber()

This commit is contained in:
haffenloher 2017-02-08 17:59:32 +01:00 committed by lilia
parent e8de2f0c52
commit d2ddfc72e4
2 changed files with 6 additions and 4 deletions

View file

@ -38640,8 +38640,9 @@ OutgoingMessage.prototype = {
updateDevices.forEach(function(device) {
promise = promise.then(function() {
return this.server.getKeysForNumber(number, device).then(handleResult).catch(function(e) {
if (e.name === 'HTTPError' && e.code === 404 && device !== 1) {
return this.removeDeviceIdsForNumber(number, [device]);
if (e.name === 'HTTPError' && e.code === 404) {
if (device !== 1) return this.removeDeviceIdsForNumber(number, [device]);
else throw new textsecure.UnregisteredUserError(number, e);
} else {
throw e;
}

View file

@ -70,8 +70,9 @@ OutgoingMessage.prototype = {
updateDevices.forEach(function(device) {
promise = promise.then(function() {
return this.server.getKeysForNumber(number, device).then(handleResult).catch(function(e) {
if (e.name === 'HTTPError' && e.code === 404 && device !== 1) {
return this.removeDeviceIdsForNumber(number, [device]);
if (e.name === 'HTTPError' && e.code === 404) {
if (device !== 1) return this.removeDeviceIdsForNumber(number, [device]);
else throw new textsecure.UnregisteredUserError(number, e);
} else {
throw e;
}