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

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}`);
}