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
Currently resource.js does this on line 139:
if (e.status >= 500) { throw new(Error)(e); }
We shouldn't throw in this case but let the engines handle it however they please.
The text was updated successfully, but these errors were encountered:
I'm dealing with a particularly annoying server right now (PHP serialized data, bla bla bla), so I'm looking for some flexibility in my engine :)
Sorry, something went wrong.
Yeah, I agree here, it's an async thing so throwing has unintended side-effects
Remove the throw for 500 errors from servers. Resolves flatiron#136. …
715a97a
…Test pass.
No branches or pull requests
Currently resource.js does this on line 139:
We shouldn't throw in this case but let the engines handle it however they please.
The text was updated successfully, but these errors were encountered: