only string values can be decoded
This commit is contained in:
parent
f858b779e8
commit
64a92791ac
1 changed files with 1 additions and 1 deletions
|
@ -723,7 +723,7 @@ Ox.URL = function(options) {
|
||||||
hash.query = hash.query || [];
|
hash.query = hash.query || [];
|
||||||
hash.query.push({
|
hash.query.push({
|
||||||
key: decodeValue(key),
|
key: decodeValue(key),
|
||||||
value: decodeValue(value)
|
value: Ox.isString(value) ? decodeValue(value) : value
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue