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
Line 400: respJson = JSON.parse(respData);
This should be skipped for empty bodies.
In one particular case, the server returned 404 with no body, but the client never gets to see the 404 due to JSON.parse failing error.
The text was updated successfully, but these errors were encountered:
Fixed waiting for pull.
Sorry, something went wrong.
Merge pull request #131 from shimonchayim/master
18d8476
Fix for issue #98
shimonchayim
No branches or pull requests
Line 400: respJson = JSON.parse(respData);
This should be skipped for empty bodies.
In one particular case, the server returned 404 with no body, but the client never gets to see the 404 due to JSON.parse failing error.
The text was updated successfully, but these errors were encountered: