Closed rohanmayya closed 2 years ago
We handle a lot of stuff on server for which we don't want to repeatedly keep calling Identify() first. Allow us to send distinct_id in a Track() call:
Identify()
distinct_id
Proposed change: properties["distinct_id"] = properties["distinct_id"] ? properties["distinct_id"] : MixpanelStorage.DistinctId;
properties["distinct_id"] = properties["distinct_id"] ? properties["distinct_id"] : MixpanelStorage.DistinctId;
in Mixpanel's Controller file
We handle a lot of stuff on server for which we don't want to repeatedly keep calling
Identify()
first. Allow us to senddistinct_id
in a Track() call:Proposed change:
properties["distinct_id"] = properties["distinct_id"] ? properties["distinct_id"] : MixpanelStorage.DistinctId;
in Mixpanel's Controller file