Skip to content

Commit ccf47a7

Browse files
authoredOct 18, 2017
Merge pull request #455 from rokoroku/patch-1
remove undefined item from Joi.try() alternatives structures
2 parents ce1014f + 690b10b commit ccf47a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎lib/properties.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,7 @@ internals.properties.prototype.parseAlternatives = function (property, joiObj, n
500500
let altName = (Utilities.geJoiLabel(obj.schema) || name);
501501
//name, joiObj, parent, parameterType, useDefinitions, isAlt
502502
return this.parseProperty(altName, obj.schema, property, parameterType, useDefinitions, true);
503-
});
503+
}).filter((obj) => obj);
504504
property['x-alternatives'] = Hoek.clone(altArray);
505505
}
506506
}

0 commit comments

Comments
 (0)
Please sign in to comment.