-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove NPS survey and add more DevX tracking #144
Conversation
58e3281
to
31b28ae
Compare
@@ -345,6 +378,9 @@ internal static void DoEngage(Value properties) | |||
properties["$mp_metadata"] = Metadata.GetPeopleMetadata(); | |||
|
|||
MixpanelStorage.EnqueueTrackingData(properties, MixpanelStorage.FlushType.PEOPLE); | |||
if (Debug.isDebugBuild) { | |||
MixpanelStorage.HasUsedPeople = true; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no automatic people updates to check for on Unity?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
there are no automatic people updates in unity
Mixpanel/MixpanelAPI.cs
Outdated
@@ -257,6 +259,7 @@ public static void Track(string eventName, string key, Value value) | |||
Value properties = new Value(); | |||
properties[key] = value; | |||
Controller.DoTrack(eventName, properties); | |||
MixpanelStorage.HasTracked = true; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks like this is set to true inside of DoTrack()
on the line above, right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good catch
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, just a couple clarifications
31b28ae
to
6a3611d
Compare
6a3611d
to
f58a5c8
Compare
No description provided.