From 00d4f9694aa00dc98a72a679f5466b9723a67a1c Mon Sep 17 00:00:00 2001 From: Kumi Date: Thu, 19 Sep 2024 19:11:49 +0200 Subject: [PATCH] fix(api): correct API request URL handling of spaces Switched double quotes to single quotes in URL handling code for better consistency and to avoid potential issues with escaping characters. This ensures the proper construction of the API request URL, improving reliability when fetching wiki articles. --- src/wikimore/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wikimore/app.py b/src/wikimore/app.py index 6a22f0c..febf9e2 100644 --- a/src/wikimore/app.py +++ b/src/wikimore/app.py @@ -269,7 +269,7 @@ def wiki_article( logger.debug(f"Fetching {title} from {base_url}") api_request = urllib.request.Request( - f"{base_url}/api/rest_v1/page/html/{escape(quote(title.replace(" ", "_")), True).replace('/', '%2F')}", + f"{base_url}/api/rest_v1/page/html/{escape(quote(title.replace(' ', '_')), True).replace('/', '%2F')}", headers=HEADERS, )