We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6d35c1 commit 62e7229Copy full SHA for 62e7229
src/main/kotlin/com/statsig/sdk/Evaluator.kt
@@ -479,7 +479,7 @@ internal class Evaluator {
479
)
480
return ConfigEvaluation(
481
fetchFromServer = false,
482
- booleanValue = strValue.matches(Regex(condition.targetValue as String))
+ booleanValue = Regex(condition.targetValue as String).containsMatchIn(strValue)
483
484
}
485
"eq" -> {
0 commit comments