Skip to content

Commit

Permalink
fix urlencoding qs for api_request
Browse files Browse the repository at this point in the history
  • Loading branch information
alzheltkovskiy-hubspot committed Dec 27, 2024
1 parent 6572070 commit 305cefb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hubspot/utils/requests/http_request_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def generate_url(self) -> str:

qs = self.options.get("qs")
if qs:
query_string = urlencode(qs)
query_string = urlencode(qs, doseq=True)
url += f"?{query_string}"

return url
Expand Down

0 comments on commit 305cefb

Please sign in to comment.