Skip to content

Commit

Permalink
fix: small hash items issue
Browse files Browse the repository at this point in the history
The type of the object was incorrectly assumed to be dict when it was list.
  • Loading branch information
joamag committed May 12, 2024
1 parent fe89420 commit 53e7a1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/appier/http.py
Original file line number Diff line number Diff line change
Expand Up @@ -1120,7 +1120,7 @@ def _quote(values, plus=False, safe="/"):

final = dict()

for key, value in values.items():
for key, value in values:
key = method(key, safe=safe)
value = method(value[0], safe=safe)
final[key] = value
Expand Down

0 comments on commit 53e7a1a

Please sign in to comment.