PR comment.

This commit is contained in:
mike12345567 2024-12-16 15:07:06 +00:00
parent d280d5d76a
commit a35e504e8f
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ export async function buildSchema(
body: autoOutputs.properties.body,
}
for (let prop of Object.keys(properties || {})) {
if (!properties?.[prop]) {
if (properties?.[prop] == null) {
continue
}
const def = properties[prop]