1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-28 06:03:40 +00:00

Unused args

This commit is contained in:
Daniel García
2025-05-13 14:05:52 +02:00
parent 73700cffd2
commit c341494a68

View File

@@ -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"),