mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-05-08 08:58:38 +01:00
Dispatch all network errors, not just auth errors
Also streamline the onError handler.
This commit is contained in:
+18
-19
@@ -125,27 +125,26 @@
|
||||
return;
|
||||
}
|
||||
|
||||
if (!ev.proto) {
|
||||
console.log(e);
|
||||
throw e;
|
||||
if (ev.proto) {
|
||||
var envelope = ev.proto;
|
||||
var message = initIncomingMessage(envelope.source, envelope.timestamp.toNumber());
|
||||
if (e.name === 'IncomingIdentityKeyError') {
|
||||
message.save({ errors : [e] }).then(function() {
|
||||
extension.trigger('updateInbox');
|
||||
notifyConversation(message);
|
||||
});
|
||||
return;
|
||||
} else if (e.message !== 'Bad MAC') {
|
||||
message.save({ errors : [ _.pick(e, ['name', 'message'])]}).then(function() {
|
||||
extension.trigger('updateInbox');
|
||||
notifyConversation(message);
|
||||
});
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
var envelope = ev.proto;
|
||||
var message = initIncomingMessage(envelope.source, envelope.timestamp.toNumber());
|
||||
if (e.name === 'IncomingIdentityKeyError') {
|
||||
message.save({ errors : [e] }).then(function() {
|
||||
extension.trigger('updateInbox');
|
||||
notifyConversation(message);
|
||||
});
|
||||
} else if (e.message !== 'Bad MAC') {
|
||||
message.save({ errors : [ _.pick(e, ['name', 'message'])]}).then(function() {
|
||||
extension.trigger('updateInbox');
|
||||
notifyConversation(message);
|
||||
});
|
||||
} else {
|
||||
console.log(e);
|
||||
throw e;
|
||||
}
|
||||
console.error(e);
|
||||
throw e;
|
||||
}
|
||||
|
||||
// lazy hack
|
||||
|
||||
Reference in New Issue
Block a user