Skip to content

Commit 9ff70c4

Browse files
committed
display updater error logs
1 parent 8c6a543 commit 9ff70c4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/main-app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ function checkUpdate () {
131131
updater.check((err, status) => {
132132
if (err) {
133133
var isLatest = err.message === 'There is no newer version.'
134-
if (!isLatest && !versionNotified) notify('Updater error!', err.message)
134+
if (!isLatest && !versionNotified) console.error('Updater error! %s', err.message)
135135
}
136136
if (!err) {
137137
if (status) {

0 commit comments

Comments
 (0)