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
In Magento1 vsBridge, json response is created using json_encode with JSON_NUMERIC_CHECK flag.
json_encode
JSON_NUMERIC_CHECK
Therefore, every string that look like integer is casted as integer. That's a good thing, but that creates some bugs:
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
In Magento1 vsBridge, json response is created using
json_encode
withJSON_NUMERIC_CHECK
flag.Therefore, every string that look like integer is casted as integer.
That's a good thing, but that creates some bugs:
The text was updated successfully, but these errors were encountered: