diff --git a/src/index.js b/src/index.js index 922d3fda3..519c89b5f 100644 --- a/src/index.js +++ b/src/index.js @@ -40,6 +40,12 @@ app.on('will-finish-launching', () => { }) function handleError (err) { + // Ignore network errors that might happen during the + // execution. + if (err.stack.includes('net::')) { + return + } + logger.error(err) criticalErrorDialog(err) }