diff options
-rw-r--r-- | cache/filter.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cache/filter.go b/cache/filter.go index b6872508..7f010608 100644 --- a/cache/filter.go +++ b/cache/filter.go @@ -91,7 +91,7 @@ func (f *Filters) Match(repoCache *RepoCache, excerpt *BugExcerpt) bool { return false } - if match := f.orMatch(f.Label, repoCache, excerpt); !match { + if match := f.andMatch(f.Label, repoCache, excerpt); !match { return false } |