Disabled auto-updater on MacOS, as it requires code signing

This commit is contained in:
Mr. Stallion 2020-06-23 19:15:23 -05:00
parent f1cec69efb
commit 366fb31114
1 changed files with 1 additions and 1 deletions

View File

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