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
I think I have found a bug in the query when using dataType activity on iOS.
On line 214 of health.js the following code is present:
res.calories = parseInt(data[i].energy.slice(0, -2)); // remove the ending J
This results in the following error:
TypeError: undefined is not an object (evaluating 'data[i].energy.slice')
This makes it impossible for us to use the activity dataType on iOS. Is there any workaround or fix for this available?
Thanks in advance!
The text was updated successfully, but these errors were encountered:
the only explanation can be because there is no energy associated with that sample, which is strange. The fix is quite immediate.
Sorry, something went wrong.
d551a1c
No branches or pull requests
I think I have found a bug in the query when using dataType activity on iOS.
On line 214 of health.js the following code is present:
This results in the following error:
This makes it impossible for us to use the activity dataType on iOS. Is there any workaround or fix for this available?
Thanks in advance!
The text was updated successfully, but these errors were encountered: