diff --git a/src/main/announcement.js b/src/main/announcement.js index 275bc0de..9f7155d0 100644 --- a/src/main/announcement.js +++ b/src/main/announcement.js @@ -32,7 +32,7 @@ function init () { function onResponse (err, res, data) { if (err) return log(`Failed to retrieve announcement: ${err.message}`) - if (res.statusCode !== 200) return log('No announcement exists') + if (res.statusCode !== 200) return log('No announcement available') try { data = JSON.parse(data.toString()) diff --git a/src/main/updater.js b/src/main/updater.js index 9fe30eb6..d21ab4e2 100644 --- a/src/main/updater.js +++ b/src/main/updater.js @@ -63,7 +63,7 @@ function initDarwinWin32 () { electron.autoUpdater.on( 'update-not-available', - () => log('Update not available') + () => log('No update available') ) electron.autoUpdater.on(