-
Notifications
You must be signed in to change notification settings - Fork 448
OutcomeValue.kind is not stored #439
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
Comments
Thanks for filing a bug, we'll begin looking into this! |
rutmb
pushed a commit
to tmbiOS/CareKit
that referenced
this issue
Mar 29, 2021
OCKOutcomeValue's kind property was being persisted, but was not being populated onto structs when rehydrated from CoreData.
gentges
added a commit
to gentges/CareKit
that referenced
this issue
Apr 19, 2021
OCKOutcomeValue's kind property was being persisted, but was not being populated onto structs when rehydrated from CoreData.
erik-apple
added a commit
that referenced
this issue
Apr 20, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I found an issue where the 'kind' attribute of OutcomeValue is not persisted by the framework. I create OutcomeValue as shown below and both 'groupIdentifier' and 'tags' are stored, but not 'kind'.
var outcomeValue = OCKOutcomeValue(value)
outcomeValue.groupIdentifier = stepResult.identifier
outcomeValue.kind = item.code
outcomeValue.tags = [item.code]
The text was updated successfully, but these errors were encountered: