From 8ae74033aefb27a512c26bc558d48b00e2c80244 Mon Sep 17 00:00:00 2001 From: AlphaX-Projects <77661270+AlphaX-Projects@users.noreply.github.com> Date: Fri, 2 Jun 2023 13:53:39 +0200 Subject: [PATCH] Disable no update notification --- electron.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/electron.js b/electron.js index a4e76fd9..88ff4afb 100644 --- a/electron.js +++ b/electron.js @@ -1048,11 +1048,7 @@ if (!isLock) { }) }) autoUpdater.on('update-not-available', (event) => { - const noUpdate = new Notification({ - title: 'Checking for update', - body: 'No update available, you are on latest version.' - }) - noUpdate.show() + log.info("NO UPDATE") }) autoUpdater.on('download-progress', (progressObj) => { myWindow.webContents.send('downloadProgress', progressObj)