diff --git a/main/core.js b/main/core.js index ab1546f92..5fe78cceb 100644 --- a/main/core.js +++ b/main/core.js @@ -74,7 +74,9 @@ async function start (ctx) { } catch (_err) { const err = new Error(`Failed to parse core event: ${line}`) err.cause = _err - Sentry.captureException(err) + if (!line.includes('failed to detect network')) { + Sentry.captureException(err) + } console.error(err) return }