From dda71cbea10ffff4426bfbbdfa900d3ddd4c0a68 Mon Sep 17 00:00:00 2001 From: sachaaaaa Date: Thu, 1 Nov 2018 17:07:07 +1100 Subject: [PATCH] always lock editor after sending friend request. unlock if error. --- libtextsecure/outgoing_message.js | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/libtextsecure/outgoing_message.js b/libtextsecure/outgoing_message.js index ca1b82180..8a34a4910 100644 --- a/libtextsecure/outgoing_message.js +++ b/libtextsecure/outgoing_message.js @@ -296,6 +296,10 @@ OutgoingMessage.prototype = { this.numberCompleted(); }) .catch(error => { + // TODO(loki): handle http errors properly + // - retry later if 400 + // - ignore if 409 (conflict) means the hash already exists + throw error; if ( error instanceof Error && error.name === 'HTTPError' && @@ -409,6 +413,10 @@ OutgoingMessage.prototype = { } } + if (this.fallBackEncryption && conversation) { + conversation.onFriendRequestSent(); + } + if (attachPrekeys) { log.info('attaching prekeys to outgoing message'); this.message.preKeyBundleMessage = await libloki.getPreKeyBundleForNumber( @@ -417,12 +425,10 @@ OutgoingMessage.prototype = { } }) .then(this.reloadDevicesAndSend(number, true)) - .then(() => { + .catch(error => { if (this.fallBackEncryption && conversation) { - conversation.onFriendRequestSent(); + conversation.onFriendRequestTimedOut(); } - }) - .catch(error => { if (error.message === 'Identity key changed') { // eslint-disable-next-line no-param-reassign error = new textsecure.OutgoingIdentityKeyError(