mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-01-21 20:08:08 +00:00
27 lines
631 B
JavaScript
27 lines
631 B
JavaScript
// const { init } = require('@sentry/electron');
|
|
// const fs = require('fs');
|
|
// const { ipcMain } = require('electron');
|
|
|
|
// let crashReportsEnabled = true;
|
|
// const DSN =
|
|
// 'https://cb7b474b2e874afb8e400c47d1452ecc:7876224cbff543d992cb0ac4021962f8@sentry.io/1040940';
|
|
|
|
// const isDev = () => {
|
|
// return fs.existsSync('.git');
|
|
// };
|
|
|
|
// const shouldSendCallback = () => {
|
|
// return !isDev() && crashReportsEnabled;
|
|
// };
|
|
|
|
|
|
// ipcMain.on('settings.changed', function (event, settings) {
|
|
// crashReportsEnabled = settings.crash_reports;
|
|
// });
|
|
|
|
|
|
// init({
|
|
// dsn: DSN,
|
|
// shouldSendCallback: shouldSendCallback
|
|
// });
|