use upstream filtering for warn item

This commit is contained in:
sk
2023-10-07 17:21:20 +02:00
parent 140c2a7b9d
commit de235ec7cc
2 changed files with 6 additions and 12 deletions

View File

@@ -14,7 +14,7 @@ public class FilterResult extends BaseModel {
@Override
public void postprocess() throws ObjectValidationException {
super.postprocess();
if(filter!=null) filter.postprocess();
if(filter!=null) filter.postprocess();
if(keywordMatches==null) keywordMatches=List.of();
}
}