Skip to content

Commit de2ef0e

Browse files
authored
Merge pull request #231 from hypercerts-org/bugfix/409-422-with-allowlist
fix: check for presence of metadata.allowlist instead of allowlist
2 parents c9f9874 + 61ac0c3 commit de2ef0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/controllers/MetadataController.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ export class MetadataController extends Controller {
131131
};
132132
}
133133

134-
if (allowList) {
134+
if (metadataValidationResult.data.allowList) {
135135
this.setStatus(409);
136136
return {
137137
success: false,

0 commit comments

Comments
 (0)