The updateInfo is not the manifest object

This commit is contained in:
Johannes Zellner
2019-05-06 17:55:49 +02:00
parent 4f5af1f7be
commit c4fbfd32ee

View File

@@ -103,7 +103,7 @@ function checkAppUpdates(callback) {
return iteratorDone();
}
const updateIsBlocked = apps.canAutoupdateApp(app, updateInfo);
const updateIsBlocked = apps.canAutoupdateApp(app, updateInfo.manifest);
if (autoupdatesEnabled && !updateIsBlocked) return iteratorDone();
debug('Notifying of app update for %s from %s to %s', app.id, app.manifest.version, updateInfo.manifest.version);