From e91de4a1dfbc11803b4af50f4539c7a58405dd2d Mon Sep 17 00:00:00 2001 From: Mati Dastugue Date: Fri, 15 May 2020 13:32:35 -0300 Subject: [PATCH] Log error when no files in the release --- public/auto-updater/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/auto-updater/index.js b/public/auto-updater/index.js index 7713063e..8fbb8404 100644 --- a/public/auto-updater/index.js +++ b/public/auto-updater/index.js @@ -24,7 +24,7 @@ function init(mainWindow) { initialized = true; autoUpdater.on('error', (error) => { - dialog.showErrorBox('Error: ', error == null ? "unknown" : (error.stack || error).toString()); + log.error(error == null ? "unknown" : (error.stack || error).toString()); }); autoUpdater.on('update-available', () => {