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'm proposing that the structure of Media.ActiveOriginalFocusPoint get changed, where it doesn't expect an int, but a decimal.
bynder-c-sharp-sdk/Bynder/Sdk/Model/Media.cs
Line 33 in 6261c41
This is the error I get:
Newtonsoft.Json.JsonReaderException: 'Input string '268.5' is not a valid integer. Path 'activeOriginalFocusPoint.y', line 1, position 2591.'
It tries to fit a decimal value inside an int, which doesn't work. If you change the datatype from int to decimal, that should fix the problem.
Kind regards,
Michiel
The text was updated successfully, but these errors were encountered:
Thanks for mentioning this issue. I've added a fix for it to the upcoming release (2.2.4).
Sorry, something went wrong.
No branches or pull requests
I'm proposing that the structure of Media.ActiveOriginalFocusPoint get changed, where it doesn't expect an int, but a decimal.
bynder-c-sharp-sdk/Bynder/Sdk/Model/Media.cs
Line 33 in 6261c41
This is the error I get:
It tries to fit a decimal value inside an int, which doesn't work.
If you change the datatype from int to decimal, that should fix the problem.
Kind regards,
Michiel
The text was updated successfully, but these errors were encountered: