Commit 415356e8 authored by Vincent Bechu's avatar Vincent Bechu

Release Version 3.21.1

Support mixed queries and add tests
parent 1ddd56e9
......@@ -7011,7 +7011,7 @@ return new Parser;
value = '%' + this.value + '%';
for (k in item) {
if (item.hasOwnProperty(k)) {
if (k !== '__id') {
if (k !== '__id' && item[k]) {
if (matchMethod(item[k], value) === true) {
return true;
}
......
This source diff could not be displayed because it is too large. You can view the blob instead.
This diff is collapsed.
This source diff could not be displayed because it is too large. You can view the blob instead.
{
"name": "jio",
"version": "v3.21.0",
"version": "v3.21.1",
"license": "LGPLv3",
"author": "Nexedi SA",
"contributors": [
......
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