Skip to content

Commit

Permalink
fix: ensure proper URI quoting i
Browse files Browse the repository at this point in the history
  • Loading branch information
staciax committed Dec 31, 2024
1 parent c805610 commit 7c6026b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion valorant/http.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def __init__(
url = Route.BASE + path

if parameters:
url = url.format_map({k: _uriquote(v) if isinstance(v, str) else v for k, v in parameters.items()})
url = url.format_map({k: _uriquote(v, safe='') if isinstance(v, str) else v for k, v in parameters.items()})

self.url: str = url

Expand Down

0 comments on commit 7c6026b

Please sign in to comment.