1
0

fix(filter): correctly filter for buckets

This commit is contained in:
kolaente
2023-11-22 10:33:03 +01:00
parent ef1cc9720c
commit eebfee73d3
5 changed files with 57 additions and 22 deletions

View File

@ -1045,7 +1045,7 @@ func IsErrInvalidFilterExpression(err error) bool {
}
func (err ErrInvalidFilterExpression) Error() string {
return fmt.Sprintf("Task filter expression is invalid [ExpressionError: %v]", err.ExpressionError)
return fmt.Sprintf("Task filter expression '%s' is invalid [ExpressionError: %v]", err.Expression, err.ExpressionError)
}
// ErrCodeInvalidFilterExpression holds the unique world-error code of this error