Added support chat and sentry ignore messages.

This commit is contained in:
Patrick Fic
2023-10-13 11:29:18 -07:00
parent fc89c4429d
commit fd989bf7e4
9 changed files with 57 additions and 9 deletions

View File

@@ -16,7 +16,6 @@ const { autoUpdater } = require("electron-updater");
const log = require("electron-log");
const contextMenu = require("electron-context-menu");
const Sentry = require("@sentry/electron");
const { set } = require("lodash");
//const Nucleus = require("nucleus-nodejs");
require("./ipc-main-handler");
@@ -24,6 +23,11 @@ require("./analytics");
Sentry.init({
dsn: "https://9840e0f304124299e379d9347e12d2e6@o492140.ingest.sentry.io/4505728058523648",
ignoreErrors: [
"SimpleURLLoaderWrapper",
"Cannot read properties of null (reading 'webContents')",
"EBUSY: resource busy or locked",
],
});
autoUpdater.autoDownload = true;