Skip to content

Commit 613b96a

Browse files
committed
Apply workaround for query parameter serialization issue
1 parent e00226f commit 613b96a

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

lib/Api/ContactsApi.php

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2046,12 +2046,7 @@ protected function fetchContactsRequest($groupIds = null)
20462046
$multipart = false;
20472047

20482048
// query params
2049-
if (is_array($groupIds)) {
2050-
$groupIds = ObjectSerializer::serializeCollection($groupIds, 'multi', true);
2051-
}
2052-
if ($groupIds !== null) {
2053-
$queryParams['groupIds'] = ObjectSerializer::toQueryValue($groupIds);
2054-
}
2049+
$queryParams['groupIds'] = $groupIds;
20552050

20562051

20572052
// body params

0 commit comments

Comments
 (0)