[Fix] Fix GenericReport.generateFilterCriteria()

This commit is contained in:
Robert von Burg 2021-06-25 13:25:56 +02:00
parent 8635e2d96f
commit ce73a39c59
1 changed files with 1 additions and 1 deletions

View File

@ -508,7 +508,7 @@ public class GenericReport extends ReportPolicy {
// stop if we have enough data, or iterated over "enough"
count++;
if (count > 10 * result.keySet().size() || result.size() > 1000)
if (count > 1000 || result.size() > 10 * result.keySet().size())
break;
}