Fix problem feed

This commit is contained in:
cuom1999 2024-08-15 17:46:09 +07:00
parent ff2c4e91d2
commit f98549e92d

View file

@ -10,6 +10,7 @@
for (var i = 0; i < vars.length; i++) { for (var i = 0; i < vars.length; i++) {
var pair = vars[i].split("="); var pair = vars[i].split("=");
var key = decodeURIComponent(pair[0]); var key = decodeURIComponent(pair[0]);
if (!key) continue;
var value = decodeURIComponent(pair[1].replace(/\+/g, ' ')); var value = decodeURIComponent(pair[1].replace(/\+/g, ' '));
queryParams[key] = value; queryParams[key] = value;
} }