1
0

fix: lint

This commit is contained in:
kolaente
2024-03-11 15:42:09 +01:00
parent dbfe162cd2
commit 6fc3d1e98f

View File

@ -154,7 +154,7 @@ func getTaskFiltersFromFilterString(filter string) (filters []*taskFilter, err e
filter = strings.ReplaceAll(filter, " in ", " ?= ")
// Replaces all occurences with in with a string so that it passes the filter
// Replaces all occurrences with in with a string so that it passes the filter
pattern := `\?=\s+([^&|]+)`
re := regexp.MustCompile(pattern)