fix null-pointer exception in filter result
closes sk22#774
This commit is contained in:
@@ -15,5 +15,6 @@ public class FilterResult extends BaseModel {
|
|||||||
public void postprocess() throws ObjectValidationException {
|
public void postprocess() throws ObjectValidationException {
|
||||||
super.postprocess();
|
super.postprocess();
|
||||||
if(filter!=null) filter.postprocess();
|
if(filter!=null) filter.postprocess();
|
||||||
|
if(keywordMatches==null) keywordMatches=List.of();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user