From bd93dfa022acc19c54e41d1f7426446ac77a03a6 Mon Sep 17 00:00:00 2001 From: Guillermo Rauch Date: Thu, 21 Jul 2016 12:44:25 -0700 Subject: [PATCH] auto-updater: stop notifying and being annoying --- auto-updater.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auto-updater.js b/auto-updater.js index c0214375..7b16828d 100644 --- a/auto-updater.js +++ b/auto-updater.js @@ -8,7 +8,7 @@ let isInit = false; function init () { autoUpdater.on('error', (err, msg) => { - notify('Error fetching updates', msg + ' (' + err.stack + ')'); + console.error('Error fetching updates', msg + ' (' + err.stack + ')'); }); autoUpdater.setFeedURL(`${FEED_URL}/${version}`);