don't set lastupdatecheck time if requested by user

This commit is contained in:
Evan Simkowitz 2024-08-06 15:36:21 -07:00
parent 5187150e3f
commit bc26d643ca
No known key found for this signature in database

View File

@ -113,7 +113,7 @@ export class Updater {
};
electron.dialog.showMessageBox(electron.BrowserWindow.getFocusedWindow(), dialogOpts);
}
this.lastUpdateCheck = now;
if (!userInput) this.lastUpdateCheck = now;
}
}