diff --git a/static/index.js b/static/index.js index 4e83a9087..179026a66 100644 --- a/static/index.js +++ b/static/index.js @@ -6,14 +6,13 @@ window.onload = function() { var loadSettings = JSON.parse(decodeURIComponent(location.search.substr(14))); // Start the crash reporter before anything else. - if (process.platform != 'win32') - require('crash-reporter').start({ - productName: 'Atom', - companyName: 'GitHub', - // By explicitly passing the app version here, we could save the call - // of "require('remote').require('app').getVersion()". - extra: {_version: loadSettings.appVersion} - }); + require('crash-reporter').start({ + productName: 'Atom', + companyName: 'GitHub', + // By explicitly passing the app version here, we could save the call + // of "require('remote').require('app').getVersion()". + extra: {_version: loadSettings.appVersion} + }); require('vm-compatibility-layer'); require('coffee-script').register();