Closed kibertoad closed 6 years ago
let bodySchema = dereferenced.paths[currentPath][currentMethod].parameters.filter(function (parameter) { return parameter.in === 'body' });
This line predictably fails if parameters are null or undefined, which is a valid case.
@idanto Thanks for lightning-fast review and merge! Any estimate on when it is feasible to publish 0.3.1 with the fix?
already done :) enjoy
Thanks a lot!
let bodySchema = dereferenced.paths[currentPath][currentMethod].parameters.filter(function (parameter) { return parameter.in === 'body' });
This line predictably fails if parameters are null or undefined, which is a valid case.