You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 11, 2023. It is now read-only.
Tested in Jaydata 1.5.10.
When have an entity with a decimal value and want to store that to the database (Post or Patch, doesn't matter), there is an error about a wrong format.
I looked into this and it's just that Jaydata is still using the old odata v3 encoding for that, where decimals were sent as a string. In v4 they should be sent as a number.
My fix for this currently is to add this line in my code to "hotpatch" this:
Tested in Jaydata 1.5.10.
When have an entity with a decimal value and want to store that to the database (Post or Patch, doesn't matter), there is an error about a wrong format.
I looked into this and it's just that Jaydata is still using the old odata v3 encoding for that, where decimals were sent as a string. In v4 they should be sent as a number.
My fix for this currently is to add this line in my code to "hotpatch" this:
It's this line in the oDataConverter that would need to be changed:
https://github.com/jaystack/jaydata/blob/development/src/Types/StorageProviders/oData/oDataConverter.js#L86
The text was updated successfully, but these errors were encountered: