Skip to content

Commit

Permalink
Should be able to search interaction ls thing values in advanced search
Browse files Browse the repository at this point in the history
Fixes #249
  • Loading branch information
brianbolt committed Feb 3, 2022
1 parent 809deb8 commit 9b5aad7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3100,7 +3100,7 @@ public Collection<Long> searchLsThingIdsByBrowserQueryDTO(
if (queryDTO.getSecondInteractions() != null){
List<ItxQueryDTO> secondInteractions = new ArrayList<ItxQueryDTO>();
for (ItxQueryDTO itx : queryDTO.getSecondInteractions()){
if(itx.getThingLabelText() != null | itx.getThingCodeName() != null | (itx.getThingValues() != null & itx.getThingValues().size() > 0)) {
if(itx.getThingLabelText() != null | itx.getThingCodeName() != null | (itx.getThingValues() != null && itx.getThingValues().size() > 0)) {
secondInteractions.add(itx);
hasCriteria = true;
}
Expand Down

0 comments on commit 9b5aad7

Please sign in to comment.