From 39b729862ecf104ea7124cd415e8705c850ba27b Mon Sep 17 00:00:00 2001 From: Korbs Date: Mon, 10 Jul 2023 08:14:44 -0400 Subject: [PATCH] Add comments --- electron/crashreporter.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/electron/crashreporter.js b/electron/crashreporter.js index 0cd4ce6..33aa4b6 100644 --- a/electron/crashreporter.js +++ b/electron/crashreporter.js @@ -5,8 +5,8 @@ module.exports = { Reporter: function() { // Crash Reporter crashReporter.start({ - productName: process.env.Name, - submitURL: process.env.CrashReportServer, + productName: process.env.Name, // Edit this in .env + submitURL: process.env.CrashReportServer, // Edit this in .env }) const javaScriptErrorHandler = async (error) => {