Skip to content

Commit

Permalink
Display patient flags when tags set is empty
Browse files Browse the repository at this point in the history
  • Loading branch information
dkayiwa committed Aug 16, 2023
1 parent ec924f3 commit 1f28089
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public Set<Tag> getTags() {
*/
public List<Flag> filter(List<Flag> flags) {
// if the filter is empty, just return everything
if (this.tags == null) {
if (this.tags == null || tags.size() == 0) {
return flags;
}

Expand Down

0 comments on commit 1f28089

Please sign in to comment.