Skip to content

Commit a70e137

Browse files
committed
Hwhoops! Fix the comparison
1 parent 77596e5 commit a70e137

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

posthog/feature_flags.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def match_property(property, property_values) -> bool:
131131
def compute_exact_match(value, override_value):
132132
if isinstance(value, list):
133133
return str(override_value).casefold() in [str(val).casefold() for val in value]
134-
return utils.str_icontains(value, override_value)
134+
return utils.str_iequals(value, override_value)
135135

136136
if operator == "exact":
137137
return compute_exact_match(value, override_value)

0 commit comments

Comments
 (0)