From 1dfba2d572bf84fa28b458bc6070c563578760f4 Mon Sep 17 00:00:00 2001 From: Ramiro Saenz Date: Mon, 18 Jul 2016 19:54:05 -0300 Subject: [PATCH] Fixes #88 --- electron/main.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/electron/main.js b/electron/main.js index 792f4ffd..1ecb5eba 100644 --- a/electron/main.js +++ b/electron/main.js @@ -172,6 +172,9 @@ function updateBadge(title) { app.setBadgeCount(messageCount); } +// Allow Custom sites with self certificates +app.commandLine.appendSwitch('ignore-certificate-errors'); + // This method will be called when Electron has finished // initialization and is ready to create browser windows. app.on('ready', createWindow);