Use decodeURIComponent instead of decodeURI

This commit is contained in:
Sheng
2022-02-23 05:14:31 +08:00
parent 11bd7fea47
commit 86c98dacc4
+3 -3
View File
@@ -106,9 +106,9 @@ jQuery(function($){
}
function decode_uri(uri) {
function decode_uri_component(uri) {
try {
return decodeURI(uri);
return decodeURIComponent(uri);
} catch(e) {
console.error(e);
}
@@ -833,7 +833,7 @@ jQuery(function($){
parse_url_data(
decode_uri(window.location.search.substring(1)) + '&' + decode_uri(window.location.hash.substring(1)),
decode_uri_component(window.location.search.substring(1)) + '&' + decode_uri_component(window.location.hash.substring(1)),
form_keys, opts_keys, url_form_data, url_opts_data
);
// console.log(url_form_data);