From e82afa7e2264bb7a0cec7f1b63f75c636211d491 Mon Sep 17 00:00:00 2001 From: MathieuG-P <40181755+Zagrios@users.noreply.github.com> Date: Wed, 25 Jan 2023 20:23:52 +0100 Subject: [PATCH] disable web installer for auto update --- src/main/services/auto-updater.service.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/services/auto-updater.service.ts b/src/main/services/auto-updater.service.ts index 21cbdb77..6ffad8e5 100644 --- a/src/main/services/auto-updater.service.ts +++ b/src/main/services/auto-updater.service.ts @@ -16,6 +16,7 @@ export class AutoUpdaterService { constructor(){ autoUpdater.logger = log; autoUpdater.autoDownload = false; + autoUpdater.disableWebInstaller = true this.utilsService = UtilsService.getInstance(); }