From a053c018b2f1317efec7bd353a26b6b88ca9c454 Mon Sep 17 00:00:00 2001 From: aandrew-me Date: Sun, 21 Jun 2026 16:06:08 +0300 Subject: [PATCH] Remove error dialog for auto update error --- main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.js b/main.js index d9569d2..25d1ebe 100644 --- a/main.js +++ b/main.js @@ -526,7 +526,7 @@ function registerAutoUpdaterEvents() { autoUpdater.on("error", (error) => { console.error("Auto-update error:", error); - dialog.showErrorBox("Update Error", i18n("updateError")); + // dialog.showErrorBox("Update Error", i18n("updateError")); }); }