Merge pull request #1168 from mikeller/fix_chromeos_version

Fixed bug in chrome web app version.
10.4.x-maintenance 10.4.1
Michael Keller 2018-08-15 22:09:26 +12:00 committed by mikeller
parent f017488d74
commit b839987411
1 changed files with 4 additions and 2 deletions

View File

@ -46,7 +46,7 @@ function setupAnalytics(result, gitChangesetId) {
var optOut = !!result.analyticsOptOut;
var checkForDebugVersions = !!result.checkForConfiguratorUnstableVersions;
var debugMode = process.versions['nw-flavor'] === 'sdk';
var debugMode = typeof process === "object" && process.versions['nw-flavor'] === 'sdk';
analytics = new Analytics('UA-123002063-1', userId, 'Betaflight Configurator', getManifestVersion(), gitChangesetId, GUI.operating_system, checkForDebugVersions, optOut, debugMode);
@ -54,7 +54,9 @@ function setupAnalytics(result, gitChangesetId) {
analytics.sendException(exception.stack);
}
process.on('uncaughtException', logException);
if (typeof process === "object") {
process.on('uncaughtException', logException);
}
analytics.sendEvent(analytics.EVENT_CATEGORIES.APPLICATION, 'AppStart', { sessionControl: 'start' });