Skip to content

Commit

Permalink
Filtered non-view elements in getAllCollections
Browse files Browse the repository at this point in the history
  • Loading branch information
klehmann committed Sep 5, 2019
1 parent ab502a7 commit e2e32b2
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1485,7 +1485,9 @@ public List<NotesCollectionSummary> startingLookup() {

@Override
public Action entryRead(List<NotesCollectionSummary> result, NotesViewEntryData entryData) {
result.add(new NotesCollectionSummary(entryData));
if (entryData.getNoteClass() == 8) { // NoteClass.VIEW
result.add(new NotesCollectionSummary(entryData));
}
return Action.Continue;
}

Expand Down

0 comments on commit e2e32b2

Please sign in to comment.