From d3e2c5027c65e71e3d7222ea4547b9dfc583e386 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Wed, 16 Dec 2015 10:17:52 -0800 Subject: [PATCH] Remove call to crashReporter.start() --- main.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/main.js b/main.js index 2c2634b..0189f64 100644 --- a/main.js +++ b/main.js @@ -3,9 +3,6 @@ const electron = require('electron'); const app = electron.app; // Module to control application life. const BrowserWindow = electron.BrowserWindow; // Module to create native browser window. -// Report crashes to our server. -electron.crashReporter.start(); - // Keep a global reference of the window object, if you don't, the window will // be closed automatically when the JavaScript object is garbage collected. let mainWindow;