Skip to content

Commit

Permalink
Merge pull request #786 from mixpanel/fix-devx-tracking
Browse files Browse the repository at this point in the history
Fix Mixpanel DevX internal tracking
  • Loading branch information
zihejia authored May 7, 2022
2 parents fc114c6 + ee4f999 commit d6953c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION_NAME=6.2.0
VERSION_NAME=6.2.1-SNAPSHOT

POM_PACKAGING=aar
GROUP=com.mixpanel.android
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ private void sendHttpEvent(String eventName, String token, String distinctId, JS
addProperties.put(eventName, 1);
peopleMessageProps.put("$add", addProperties);
peopleMessageProps.put("$token", token);
peopleMessageProps.put("$distinct_id", token);
peopleMessageProps.put("$distinct_id", distinctId);
mMessages.peopleMessage(new AnalyticsMessages.PeopleDescription(peopleMessageProps, token));
}
mMessages.postToServer(new AnalyticsMessages.FlushDescription(token, false));
Expand Down

0 comments on commit d6953c9

Please sign in to comment.