We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
converter.ts L392 fails on operations that don't have a security array.
security
Either the sec variable should null coalesce to [] or a check should be put in before chaining forEach (sec?.forEach).
sec
[]
forEach
sec?.forEach
The text was updated successfully, but these errors were encountered:
fixed in #27 and #27, released as 0.13.1
Sorry, something went wrong.
resubmit fixes for apiture#26. version 0.13.2
19348b1
Merge pull request #29 from DavidBiesack/bugfix-26
831e627
Bugfix for #26 (resubmitted)
Successfully merging a pull request may close this issue.
converter.ts L392 fails on operations that don't have a
security
array.Either the
sec
variable should null coalesce to[]
or a check should be put in before chainingforEach
(sec?.forEach
).The text was updated successfully, but these errors were encountered: