fixed compare behaviour

This commit is contained in:
2026-04-24 16:32:45 +06:00
parent 9861e09246
commit 5f753c3e93
3 changed files with 126 additions and 4 deletions

View File

@@ -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)
}
}