appstore: automatic is not stableOnly

This commit is contained in:
Girish Ramakrishnan
2025-06-25 18:17:22 +02:00
parent 7d1f218523
commit e0af49f638
5 changed files with 18 additions and 18 deletions

View File

@@ -56,6 +56,6 @@ async function checkForUpdates(req, res, next) {
// it can take a while sometimes to get all the app updates one by one
req.clearTimeout();
await updateChecker.checkForUpdates({ automatic: false });
await updateChecker.checkForUpdates({ stableOnly: false });
next(new HttpSuccess(200, { update: updateChecker.getUpdateInfo() }));
}