BUGFIX partial match is no match

This commit is contained in:
yo 2024-03-31 16:58:14 +02:00
parent 00f1647aa6
commit 833ffde474

View File

@ -106,11 +106,16 @@ func (f *Filter) match(line *string) []string {
}
if f.pattern == nil {
// No pattern, so this match will never actually be used
return []string{"."}
return nil
}
}
}
if len(result) == len(f.pattern) {
return result
} else {
// Incomplete match = no match
return nil
}
}
func (f *Filter) sendActions(match []string, at time.Time) {