[JavaScript] Fix for issue #5358: Regression in 2.3 using multi parameters (Cannot read property 'buildCollectionParam' of undefined) (#5362)

* Fix for issue #5358

* Update tests for #5358
This commit is contained in:
Michael Kourlas 2017-04-11 05:52:32 -04:00 committed by wing328
parent 2d0c8c4060
commit 0e65f649bc
3 changed files with 3 additions and 3 deletions

View File

@ -391,7 +391,7 @@
}
} else {
// All other collection query parameters should be treated as ordinary query parameters.
queryParams[key] = this.apiClient.buildCollectionParam(param.value, param.collectionFormat);
queryParams[key] = this.buildCollectionParam(param.value, param.collectionFormat);
}
}
}

View File

@ -385,7 +385,7 @@
}
} else {
// All other collection query parameters should be treated as ordinary query parameters.
queryParams[key] = this.apiClient.buildCollectionParam(param.value, param.collectionFormat);
queryParams[key] = this.buildCollectionParam(param.value, param.collectionFormat);
}
}
}

View File

@ -394,7 +394,7 @@
}
} else {
// All other collection query parameters should be treated as ordinary query parameters.
queryParams[key] = this.apiClient.buildCollectionParam(param.value, param.collectionFormat);
queryParams[key] = this.buildCollectionParam(param.value, param.collectionFormat);
}
}
}