This commit is contained in:
Girish Ramakrishnan
2024-03-30 18:51:19 +01:00
parent 110e683318
commit a82fb0c2cb
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -74,7 +74,7 @@ exports = module.exports = {
startExec,
getExec,
checkManifestConstraints: checkManifest,
checkManifest,
canAutoupdateApp,
autoupdateApps,
+1 -1
View File
@@ -192,7 +192,7 @@ async function verifyManifest(manifest) {
let error = manifestFormat.parse(manifest);
if (error) throw new BoxError(BoxError.BAD_FIELD, `Manifest error: ${error.message}`);
error = apps.checkManifestConstraints(manifest);
error = await apps.checkManifest(manifest);
if (error) throw new BoxError(BoxError.CONFLICT, `Manifest constraint check failed: ${error.message}`);
}