From 2930a94c791c0db13493f413ad4e487a7c6f63bd Mon Sep 17 00:00:00 2001 From: David Baker Date: Thu, 1 Dec 2016 18:01:23 +0000 Subject: [PATCH] Change to update_base_url --- electron/src/electron-main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electron/src/electron-main.js b/electron/src/electron-main.js index 044eca5621..3fabd01bb4 100644 --- a/electron/src/electron-main.js +++ b/electron/src/electron-main.js @@ -111,7 +111,7 @@ function startAutoUpdate(update_url) { // package.json. There is no autoupdate for Linux: it's expected that // the distro will provide it. if (process.platform == 'darwin') { - autoUpdater.setFeedURL(update_url + 'macos/'); + autoUpdater.setFeedURL(update_base_url + 'update/macos/'); } // We check for updates ourselves rather than using 'updater' because we need to // do it in the main process (and we don't really need to check every 10 minutes: