We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When I write this:
let identify = Identify() identify.set(property: "someId", value: someValue) identify.set(property: "anotherId", value: anotherValue) amplitude.identify(identify: identify)
and if there was a value for "anotherId" before, then both values should be set to someValue and anotherValue respectively.
Currently the second value, here: "anotherValue" is not updated and basically discarded.
See code above
This works correctly if anotherValue was not set before:
anotherValue
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Expected Behavior
When I write this:
and if there was a value for "anotherId" before, then both values should be set to someValue and anotherValue respectively.
Current Behavior
Currently the second value, here: "anotherValue" is not updated and basically discarded.
Possible Solution
Steps to Reproduce
See code above
Environment
Note
This works correctly if
anotherValue
was not set before:The text was updated successfully, but these errors were encountered: