fix: global error copy to clipboard option must not quit the app

this allows for easier debugging. The user must explicitly quit the app when the error window is shown using the quit button
pull/2366/head
William Grant 3 years ago
parent 3ecdb659d8
commit aef6d9e8a7

@ -6,7 +6,7 @@ import { ConsoleCustom } from './logging'; // checked - only node
// We use hard-coded strings until we're able to update these strings from the locale. // We use hard-coded strings until we're able to update these strings from the locale.
let quitText = 'Quit'; let quitText = 'Quit';
let copyErrorAndQuitText = 'Copy error and quit'; let copyErrorAndQuitText = 'Copy error to clipboard';
async function handleError(prefix: string, error: any) { async function handleError(prefix: string, error: any) {
if ((console as ConsoleCustom)._error) { if ((console as ConsoleCustom)._error) {
@ -17,21 +17,21 @@ async function handleError(prefix: string, error: any) {
if (app.isReady()) { if (app.isReady()) {
// title field is not shown on macOS, so we don't use it // title field is not shown on macOS, so we don't use it
const button = await dialog.showMessageBox({ const button = await dialog.showMessageBox({
buttons: [quitText, copyErrorAndQuitText], buttons: [copyErrorAndQuitText, quitText],
defaultId: 0, defaultId: 0,
detail: redactAll(error.stack), detail: redactAll(error.stack),
message: prefix, message: prefix,
noLink: true, noLink: true,
type: 'error', type: 'error',
}); });
if (button.response === 1) { if (button.response === 0) {
clipboard.writeText(`${prefix}\n\n${redactAll(error.stack)}`); clipboard.writeText(`${prefix}\n\n${redactAll(error.stack)}`);
} else if (button.response === 1) {
app.exit(1);
} }
} else { } else {
dialog.showErrorBox(prefix, error.stack); dialog.showErrorBox(prefix, error.stack);
} }
app.exit(1);
} }
export const updateLocale = (messages: LocaleMessagesType) => { export const updateLocale = (messages: LocaleMessagesType) => {

Loading…
Cancel
Save