cyclosproject / ng-openapi-gen

An OpenAPI 3.0 codegen for Angular
MIT License
397 stars 132 forks source link

Fix explode false condition #131

Closed coutin closed 3 years ago

coutin commented 3 years ago

When explode is set to false in openApi, the Parameter class is never handling that because of the if (this.explode). As explode is true by default, the requestBuilder is never executing the specific logic implemented in case of explode=false.

This PR solves that issue.

luisfpg commented 3 years ago

Thanks for the PR. Merged.