Skip to content

Commit f4c6848

Browse files
author
Mateusz 'Serafin' Gajewski
committed
Fix on filtering
1 parent 5254889 commit f4c6848

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

filter.go

+4
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@ func accept(values ...string) bool {
3838
}
3939
}
4040

41+
if len(filterInclude.values) == 0 {
42+
return true
43+
}
44+
4145
for _, include := range filterInclude.values {
4246
if strings.Contains(value, include) {
4347
return true

0 commit comments

Comments
 (0)