Commit f1c6b8e9 authored by Tristan Cavelier's avatar Tristan Cavelier

BACKSLASH dist/jio-latest.js

parent a8b0aeae
...@@ -7455,7 +7455,10 @@ return new Parser; ...@@ -7455,7 +7455,10 @@ return new Parser;
}; };
function sanitizeQueryValue(value) { function sanitizeQueryValue(value) {
return value.replace(/((?:\\\\)*)\\$/, "$1"); if (typeof value === "string") {
return value.replace(/((?:\\\\)*)\\$/, "$1");
}
return value;
} }
function objectToSearchText(query) { function objectToSearchText(query) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment