From 421c62b5edcc9ce3143830371ead6f4d9b670710 Mon Sep 17 00:00:00 2001 From: Ramiro Saenz Date: Thu, 22 Sep 2016 22:48:53 -0300 Subject: [PATCH] Certification Error to Warning --- electron/main.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/electron/main.js b/electron/main.js index 96683740..4bed4c1d 100644 --- a/electron/main.js +++ b/electron/main.js @@ -306,10 +306,10 @@ app.on('certificate-error', function(event, webContents, url, error, certificate } else { callback(false); dialog.showMessageBox(mainWindow, { - title: 'Certification Error' + title: 'Certification Warning' ,message: 'The service with the following URL has an invalid authority certification.\n\n'+url+'\n\nIf is a Custom Service, you have to remove it and add it again, enabling the "Trust invalid authority certificates" in the Options.' ,buttons: ['OK'] - ,type: 'error' + ,type: 'warning' }, function() { });