Skip to content
Snippets Groups Projects
Commit c7d8c4d7 authored by Hugues.Cazeaux's avatar Hugues.Cazeaux
Browse files

fix: wrong method used for 'to' parameter

parent 10696be7
No related branches found
No related tags found
No related merge requests found
......@@ -185,7 +185,7 @@ public abstract class IndexingController<T extends IndexMetadata> extends IndexR
rangeCondition.setLowerValue(from);
}
if (!StringTool.isNullOrEmpty(to)) {
rangeCondition.setLowerValue(to);
rangeCondition.setUpperValue(to);
}
searchConditions.add(rangeCondition);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment