fixed error in the block processor: entities with orderField=null were not considered

This commit is contained in:
miconis 2020-09-19 17:43:41 +02:00
parent eea8e87b25
commit 9e8ea8f6ee
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ public class BlockProcessor {
WfConfig wf = dedupConf.getWf();
final Field fieldsPivot = pivot.values(wf.getOrderField());
final String fieldPivot = (fieldsPivot == null) || fieldsPivot.isEmpty() ? null : fieldsPivot.stringValue();
final String fieldPivot = (fieldsPivot == null) || fieldsPivot.isEmpty() ? "" : fieldsPivot.stringValue();
if (fieldPivot != null) {
int i = 0;