Skip to content

Commit 637591f

Browse files
author
Matthew Elwell
authored
Add identity to segment logic, missed in previous PR (#154)
1 parent db72916 commit 637591f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

api/integrations/segment/segment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def generate_user_data(
2525
feature_properties = {}
2626

2727
for feature_state in feature_states:
28-
value = feature_state.get_feature_state_value()
28+
value = feature_state.get_feature_state_value(identity=identity)
2929
feature_properties[feature_state.feature.name] = (
3030
value if (feature_state.enabled and value) else feature_state.enabled
3131
)

0 commit comments

Comments
 (0)