Browse Source

Fixes #88

pull/116/merge
Ramiro Saenz 9 years ago
parent
commit
1dfba2d572
  1. 3
      electron/main.js

3
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);

Loading…
Cancel
Save