From 366fb31114a2ccb941fb3e80fbfc6a8c54b7c625 Mon Sep 17 00:00:00 2001 From: "Mr. Stallion" Date: Tue, 23 Jun 2020 19:15:23 -0500 Subject: [PATCH] Disabled auto-updater on MacOS, as it requires code signing --- electron/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electron/main.ts b/electron/main.ts index 69b1d1b..af2c859 100644 --- a/electron/main.ts +++ b/electron/main.ts @@ -317,7 +317,7 @@ function onReady(): void { // ); const updaterUrl = `https://update.electronjs.org/mrstallion/fchat-rising/${process.platform}-${process.arch}/${pck.version}`; - if(process.env.NODE_ENV === 'production') { + if((process.env.NODE_ENV === 'production') && (process.platform !== 'darwin')) { electron.autoUpdater.setFeedURL({url: updaterUrl + (settings.beta ? '?channel=beta' : ''), serverType: 'json'}); setTimeout(() => electron.autoUpdater.checkForUpdates(), 10000); const updateTimer = setInterval(() => electron.autoUpdater.checkForUpdates(), 3600000);