Skip to content

Commit 8724e84

Browse files
committed
Add missing await
1 parent d69be9b commit 8724e84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/validation/gltf/GltfExtensionValidators.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ export class GltfExtensionValidators {
141141
GltfExtensionValidators.gltfExtensionValidators
142142
);
143143
for (const validator of validators) {
144-
const valid = validator(path, gltfData, context);
144+
const valid = await validator(path, gltfData, context);
145145
if (!valid) {
146146
result = false;
147147
}

0 commit comments

Comments
 (0)