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) }