Commit 2e7d0590 authored by Romain Courteaud's avatar Romain Courteaud

Release 3.38.1

Fix erp5 storage query handling
parent be5913c7
...@@ -26,7 +26,7 @@ TESTDIR = test ...@@ -26,7 +26,7 @@ TESTDIR = test
EXAMPLEDIR = examples EXAMPLEDIR = examples
EXTERNALDIR = external EXTERNALDIR = external
VERSION = 3.38.0 VERSION = 3.38.1
JIOVERSION = ${DISTDIR}/jio-v${VERSION}.js JIOVERSION = ${DISTDIR}/jio-v${VERSION}.js
JIOLATEST = ${DISTDIR}/jio-latest.js JIOLATEST = ${DISTDIR}/jio-latest.js
JIONODEVERSION = ${DISTDIR}/jio-v${VERSION}-node.js JIONODEVERSION = ${DISTDIR}/jio-v${VERSION}-node.js
......
...@@ -14349,6 +14349,7 @@ var jIO = window.jIO, ...@@ -14349,6 +14349,7 @@ var jIO = window.jIO,
parsed_query.query_list.splice(i, 1); parsed_query.query_list.splice(i, 1);
query = jIO.Query.objectToSearchText(parsed_query); query = jIO.Query.objectToSearchText(parsed_query);
local_role_found = true; local_role_found = true;
sub_query = parsed_query.query_list[i];
} else { } else {
result_list = isMultipleLocalRoles(sub_query); result_list = isMultipleLocalRoles(sub_query);
if (result_list) { if (result_list) {
...@@ -14356,6 +14357,7 @@ var jIO = window.jIO, ...@@ -14356,6 +14357,7 @@ var jIO = window.jIO,
parsed_query.query_list.splice(i, 1); parsed_query.query_list.splice(i, 1);
query = jIO.Query.objectToSearchText(parsed_query); query = jIO.Query.objectToSearchText(parsed_query);
local_role_found = true; local_role_found = true;
sub_query = parsed_query.query_list[i];
} }
} }
} }
......
...@@ -13834,6 +13834,7 @@ return new Parser; ...@@ -13834,6 +13834,7 @@ return new Parser;
parsed_query.query_list.splice(i, 1); parsed_query.query_list.splice(i, 1);
query = jIO.Query.objectToSearchText(parsed_query); query = jIO.Query.objectToSearchText(parsed_query);
local_role_found = true; local_role_found = true;
sub_query = parsed_query.query_list[i];
} else { } else {
result_list = isMultipleLocalRoles(sub_query); result_list = isMultipleLocalRoles(sub_query);
if (result_list) { if (result_list) {
...@@ -13841,6 +13842,7 @@ return new Parser; ...@@ -13841,6 +13842,7 @@ return new Parser;
parsed_query.query_list.splice(i, 1); parsed_query.query_list.splice(i, 1);
query = jIO.Query.objectToSearchText(parsed_query); query = jIO.Query.objectToSearchText(parsed_query);
local_role_found = true; local_role_found = true;
sub_query = parsed_query.query_list[i];
} }
} }
} }
......
This diff is collapsed.
This diff is collapsed.
{ {
"name": "jio", "name": "jio",
"version": "v3.38.0", "version": "v3.38.1",
"license": "GPLv3+", "license": "GPLv3+",
"author": "Nexedi SA", "author": "Nexedi SA",
"contributors": [ "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