|
@@ -59,7 +59,7 @@ function parseURL(url)
|
|
|
let val = decodeURIComponent(splitEntry[1].toLowerCase());
|
|
|
|
|
|
if(["true", "false"].includes(val.toLowerCase()))
|
|
|
- val = Boolean(val.toLowerCase());
|
|
|
+ val = val.toLowerCase() === "true";
|
|
|
|
|
|
qstrObj[decodeURIComponent(splitEntry[0])] = val;
|
|
|
}
|