From c341494a68dbd67ba6c426ad970ddd42f7e17aa7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Garci=CC=81a?= Date: Tue, 13 May 2025 14:05:52 +0200 Subject: [PATCH] Unused args --- apps/desktop/src/main/updater.main.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/desktop/src/main/updater.main.ts b/apps/desktop/src/main/updater.main.ts index 9c635b4f153..51d5073911e 100644 --- a/apps/desktop/src/main/updater.main.ts +++ b/apps/desktop/src/main/updater.main.ts @@ -42,7 +42,7 @@ export class UpdaterMain { this.doingUpdateCheck = true; }); - autoUpdater.on("update-available", async (info) => { + autoUpdater.on("update-available", async () => { if (this.doingUpdateCheckWithFeedback) { if (this.windowMain.win == null) { this.reset(); @@ -68,7 +68,7 @@ export class UpdaterMain { } }); - autoUpdater.on("update-not-available", async (info) => { + autoUpdater.on("update-not-available", async () => { if (this.doingUpdateCheckWithFeedback && this.windowMain.win != null) { await dialog.showMessageBox(this.windowMain.win, { message: this.i18nService.t("noUpdatesAvailable"),