mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-06-13 04:28:08 +00:00
Check if we are on develop version and don't send reports
This commit is contained in:
13
sentry.js
13
sentry.js
@ -1,8 +1,15 @@
|
||||
const { SentryClient } = require('@sentry/electron');
|
||||
var fs = require('fs');
|
||||
|
||||
const DSN =
|
||||
'https://cb7b474b2e874afb8e400c47d1452ecc:7876224cbff543d992cb0ac4021962f8@sentry.io/1040940';
|
||||
|
||||
SentryClient.create({
|
||||
dsn: DSN
|
||||
});
|
||||
const isDev = () => {
|
||||
return fs.existsSync('.git');
|
||||
};
|
||||
|
||||
if (!isDev()) {
|
||||
SentryClient.create({
|
||||
dsn: DSN
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user