fix: lint
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
kolaente 2024-03-11 15:42:09 +01:00
parent dbfe162cd2
commit 6fc3d1e98f
Signed by: konrad
GPG Key ID: F40E70337AB24C9B

View File

@ -154,7 +154,7 @@ func getTaskFiltersFromFilterString(filter string) (filters []*taskFilter, err e
filter = strings.ReplaceAll(filter, " in ", " ?= ") 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+([^&|]+)` pattern := `\?=\s+([^&|]+)`
re := regexp.MustCompile(pattern) re := regexp.MustCompile(pattern)