pull/1205/head
Audric Ackermann 5 years ago
parent 8e0a466996
commit fb7e13acb0
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -1293,7 +1293,6 @@
});
},
someRecipientsFailed() {
const c = this.getConversation();
if (!c || c.isPrivate()) {

@ -244,7 +244,9 @@
// }
// }
// });
this.fetchHandleMessageSentData = this.fetchHandleMessageSentData.bind(this);
this.fetchHandleMessageSentData = this.fetchHandleMessageSentData.bind(
this
);
this.handleMessageSentFailure = this.handleMessageSentFailure.bind(this);
this.handleMessageSentSuccess = this.handleMessageSentSuccess.bind(this);
@ -262,11 +264,13 @@
});
this.listenTo(convoCollection, 'reset', removeAllConversations);
window.libsession
.getMessageQueue()
.events.addListener('success', this.handleMessageSentSuccess);
window.libsession.getMessageQueue().events.addListener('success', this.handleMessageSentSuccess);
window.libsession.getMessageQueue().events.addListener('fail', this.handleMessageSentFailure);
window.libsession
.getMessageQueue()
.events.addListener('fail', this.handleMessageSentFailure);
Whisper.events.on('messageExpired', messageExpired);
Whisper.events.on('userChanged', userChanged);
@ -286,7 +290,9 @@
}
// find the corresponding conversation of this message
const conv = window.ConversationController.get(tmpMsg.get('conversationId'));
const conv = window.ConversationController.get(
tmpMsg.get('conversationId')
);
// then, find in this conversation the very same message
const msg = conv.messageCollection.models.find(
@ -353,7 +359,10 @@
// const sentTo = this.get('sent_to') || [];
const expirationStartTimestamp = Date.now();
if (m.device === window.textsecure.storage.user.getNumber() && !msg.get('sync')) {
if (
m.device === window.textsecure.storage.user.getNumber() &&
!msg.get('sync')
) {
msg.set({ sentSync: false });
}
msg.set({

@ -305,7 +305,6 @@ OutgoingMessage.prototype = {
await lokiMessageAPI.sendMessage(pubKey, data, timestamp, ttl, options);
} catch (e) {
if (e.name === 'HTTPError' && e.code !== 409 && e.code !== 410) {
throw new textsecure.SendMessageNetworkError(number, '', e, timestamp);
} else if (e.name === 'TimedOutError') {
throw new textsecure.PoWError(number, e);

Loading…
Cancel
Save