Fix problem feed
This commit is contained in:
parent
ff2c4e91d2
commit
f98549e92d
1 changed files with 1 additions and 0 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue