Skip to content

Commit

Permalink
Add comma separation to shorten urls
Browse files Browse the repository at this point in the history
  • Loading branch information
hsyyid committed Jan 8, 2024
1 parent a26e630 commit bac9ed6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tap_hubspot_beta/client_v3.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ def get_url_params(
params["limit"] = self.page_size
params.update(self.additional_prarams)
if self.properties_url:
params["properties"] = self.selected_properties
params["properties"] = ",".join(self.selected_properties)
if next_page_token:
params["after"] = next_page_token
return params
Expand Down

0 comments on commit bac9ed6

Please sign in to comment.