Fixed linter

This commit is contained in:
dimitri 2020-10-20 17:59:08 +02:00
parent 2a56e870da
commit 52b5600df7

View File

@ -1012,13 +1012,13 @@ app.on('select-client-certificate', (event, webContents, url, list, callback) =>
} else { } else {
console.log('No client certificate available'); console.log('No client certificate available');
} }
}) });
app.on('certificate-error', (event, webContents, url, error, certificate, callback) => { app.on('certificate-error', (event, webContents, url, error, certificate, callback) => {
// Ensure we don't trust certificate causing a verification error // Ensure we don't trust certificate causing a verification error
console.log('Untrusted server certificate'); console.log('Untrusted server certificate');
callback(false); callback(false);
}) });
function beforeQuit() { function beforeQuit() {
global.appQuitting = true; global.appQuitting = true;