From 464e63fd92338c04271c4127c760b841d86cd746 Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Sun, 22 Nov 2020 16:12:04 -1000 Subject: [PATCH] standard (Fixes for PR #1818) --- src/crash-reporter.js | 2 +- src/main/ipc.js | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/crash-reporter.js b/src/crash-reporter.js index f3d5f097..5832592e 100644 --- a/src/crash-reporter.js +++ b/src/crash-reporter.js @@ -6,7 +6,7 @@ function init () { const config = require('./config') const { crashReporter } = require('electron') -crashReporter.start({ + crashReporter.start({ productName: config.APP_NAME, submitURL: config.CRASH_REPORT_URL, globalExtra: { _companyName: config.APP_NAME }, diff --git a/src/main/ipc.js b/src/main/ipc.js index 2438e74a..e4638732 100644 --- a/src/main/ipc.js +++ b/src/main/ipc.js @@ -137,7 +137,6 @@ function init () { * Shell */ - ipcMain.on('openPath', (e, ...args) => { const shell = require('./shell') shell.openPath(...args)