From 7c6026b1b6ee973f35a4b47a2b84035df39daf17 Mon Sep 17 00:00:00 2001 From: STACiA <69411527+staciax@users.noreply.github.com> Date: Tue, 31 Dec 2024 22:06:02 +0700 Subject: [PATCH] fix: ensure proper URI quoting i --- valorant/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/valorant/http.py b/valorant/http.py index fbd0eee..95ea96b 100644 --- a/valorant/http.py +++ b/valorant/http.py @@ -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