From d33a86ce3c0a0ee84f6a3a18bb51775638e2bba4 Mon Sep 17 00:00:00 2001 From: Grigory Date: Mon, 27 Jan 2025 22:38:29 +0500 Subject: [PATCH] fix(tools): encode search uri params --- core_js/tools.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core_js/tools.js b/core_js/tools.js index b4927ea..8e20481 100644 --- a/core_js/tools.js +++ b/core_js/tools.js @@ -347,7 +347,7 @@ function urlSearchParamsToString(searchParams) { searchParams.forEach((value, key) => { if (value) { - rtn.push(key + '=' + value) + rtn.push(key + '=' + encodeURIComponent(value)) } else { rtn.push(key) }