fixed compare behaviour
This commit is contained in:
@@ -1474,7 +1474,7 @@ func (db *LineDb) valuesMatch(a, b any, strictCompare bool) bool {
|
||||
// Сравнение строк
|
||||
if aStr, ok := a.(string); ok {
|
||||
if bStr, ok := b.(string); ok {
|
||||
return strings.EqualFold(aStr, bStr)
|
||||
return matchStringByPattern(aStr, bStr, strictCompare)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user