From e3cfc8dcdca2e3bff00e8ae45c46f96e5e0509a6 Mon Sep 17 00:00:00 2001 From: Oj Date: Fri, 10 Jun 2022 10:54:23 +0100 Subject: [PATCH] [NoTrack] Disable console setting (temp) --- src/mainWindow.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mainWindow.js b/src/mainWindow.js index 6270d76..b432a61 100644 --- a/src/mainWindow.js +++ b/src/mainWindow.js @@ -2,7 +2,7 @@ if ('' === 'true') { // Disable sentry try { window.__SENTRY__.hub.getClient().getOptions().enabled = false; - Object.keys(console).forEach(x => console[x] = console[x].__sentry_original__ ?? console[x]); + // Object.keys(console).forEach(x => console[x] = console[x].__sentry_original__ ?? console[x]); } catch { } }