Skip to content

Commit d9b12d0

Browse files
committed
Remove crash reporter
Not really using it!
1 parent efe96e6 commit d9b12d0

File tree

3 files changed

+0
-10
lines changed

3 files changed

+0
-10
lines changed

src/main/bootstrap.js

-7
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,3 @@ if ( process.env.TEST_MODE === undefined && ! global.IS_DEV ) {
4747
}
4848
};
4949
}
50-
51-
global.CRASH_REPORTER = {
52-
productName: "Before Dawn",
53-
companyName: "Before Dawn",
54-
submitURL: "http://beforedawn.muffinlabs.com:1127/post",
55-
uploadToServer: true
56-
};

src/main/index.js

-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
*/
1616

1717
const electron = require("electron");
18-
const {crashReporter} = require("electron");
1918
const log = require("electron-log");
2019

2120
const app = electron.app; // Module to control application life.
@@ -1027,7 +1026,6 @@ if ( typeof(global.RAVEN_PRIVATE_URL) !== "undefined" ) {
10271026
Raven.config(global.RAVEN_PRIVATE_URL, global.RAVEN_OPTIONS).install();
10281027
}
10291028

1030-
crashReporter.start(global.CRASH_REPORTER);
10311029

10321030
if (global.IS_DEV) {
10331031
log.info("Running in development");

test/ui/prefs.js

-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,6 @@ describe('Prefs', function() {
107107

108108
it('allows setting path via dialog', function(done) {
109109
app.fakeDialog.mock([ { method: 'showOpenDialog', value: ['/not/a/real/path'] } ]);
110-
111110
app.client.waitUntilWindowLoaded().click("=Preferences").
112111
then(() => app.client.click("button.pick")).
113112
then(() => app.client.click("button.save")).

0 commit comments

Comments
 (0)