forked from loafle/openapi-generator-original
Fix typescript generator for parameter collectionFormat for pipes ssv (#6553)
Co-authored-by: David Biesack <David.Biesack@apiture.com> Co-authored-by: William Cheng <wing328hk@gmail.com> Co-authored-by: Vikrant Balyan <vvb@users.noreply.github.com> Co-authored-by: Michele Albano <michele.albano@gmail.com> Co-authored-by: Esteban Gehring <esteban.gehring@bithost.ch>
This commit is contained in:
@@ -476,7 +476,7 @@ public class FakeApiController extends Controller {
|
||||
if (httpArray == null) {
|
||||
throw new IllegalArgumentException("'http' parameter is required");
|
||||
}
|
||||
List<String> httpList = OpenAPIUtils.parametersToList("space", httpArray);
|
||||
List<String> httpList = OpenAPIUtils.parametersToList("ssv", httpArray);
|
||||
List<String> http = new ArrayList<>();
|
||||
for (String curParam : httpList) {
|
||||
if (!curParam.isEmpty()) {
|
||||
|
||||
Reference in New Issue
Block a user