aboutsummaryrefslogtreecommitdiffstats
path: root/src/index.js
diff options
context:
space:
mode:
authorLibravatar Amine Mouafik <amine@mouafik.fr>2020-10-04 10:02:10 +0100
committerLibravatar GitHub <noreply@github.com>2020-10-04 10:02:10 +0100
commit484846786ecf19c9c22794fe81d922af025ab4a4 (patch)
tree96996b85743d98af6cbd009c5eef13cb039c46cd /src/index.js
parentFix "Open folder" button on "Custom services" screen (#991) (diff)
downloadferdium-app-484846786ecf19c9c22794fe81d922af025ab4a4.tar.gz
ferdium-app-484846786ecf19c9c22794fe81d922af025ab4a4.tar.zst
ferdium-app-484846786ecf19c9c22794fe81d922af025ab4a4.zip
Fix macOS code signing and setup automatic nightly builds (#990)
Co-authored-by: Travis CI <travis@Traviss-Mac.local> Co-authored-by: vantezzen <hello@vantezzen.io>
Diffstat (limited to 'src/index.js')
-rw-r--r--src/index.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/index.js b/src/index.js
index 66ae3ad00..1f482b12a 100644
--- a/src/index.js
+++ b/src/index.js
@@ -53,7 +53,7 @@ import userAgent from './helpers/userAgent-helpers';
53 53
54const debug = require('debug')('Ferdi:App'); 54const debug = require('debug')('Ferdi:App');
55 55
56// From Electron 9 onwards, app.allowRendererProcessReuse = true by default. This causes the app to crash on Windows due to the 56// From Electron 9 onwards, app.allowRendererProcessReuse = true by default. This causes the app to crash on Windows due to the
57// Electron Windows Notification API crashing. Setting this to false fixes the issue until the electron team fixes the notification bug 57// Electron Windows Notification API crashing. Setting this to false fixes the issue until the electron team fixes the notification bug
58// More Info - https://github.com/electron/electron/issues/18397 58// More Info - https://github.com/electron/electron/issues/18397
59if (isWindows) { 59if (isWindows) {
@@ -333,7 +333,7 @@ const createWindow = () => {
333 333
334 app.mainWindow = mainWindow; 334 app.mainWindow = mainWindow;
335 app.isMaximized = mainWindow.isMaximized(); 335 app.isMaximized = mainWindow.isMaximized();
336 336
337 mainWindow.webContents.on('new-window', (e, url) => { 337 mainWindow.webContents.on('new-window', (e, url) => {
338 debug('Open url', url); 338 debug('Open url', url);
339 e.preventDefault(); 339 e.preventDefault();