auto-updater: stop notifying and being annoying

This commit is contained in:
Guillermo Rauch 2016-07-21 12:44:25 -07:00
parent 01e923b263
commit bd93dfa022

View file

@ -8,7 +8,7 @@ let isInit = false;
function init () { function init () {
autoUpdater.on('error', (err, msg) => { 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}`); autoUpdater.setFeedURL(`${FEED_URL}/${version}`);