Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamegrieve committed Oct 12, 2021
2 parents f120a61 + 5a4ebbc commit 95f7f13
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ private void checkSearchSet(List<ValidationMessage> errors, Element bundle, List
}

Boolean searchMode = readHasSearchMode(entries);
if (searchMode == false) { // if no resources have search mode
if (searchMode != null && searchMode == false) { // if no resources have search mode
boolean typeProblem = false;
String rtype = null;
int count = 0;
Expand Down

0 comments on commit 95f7f13

Please sign in to comment.