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 have error when try to use ok handler. redux-api-middleware - 3.0.1
ok: async res => { const json = await res.json(); return res.ok && !json.error; },
Error
payload: message: "Failed to execute 'json' on 'Response': body stream is locked" name: "InternalError"
The text was updated successfully, but these errors were encountered:
@dinfyru try this one
ok: async res => { /* vvvvvvvv */ const json = await res.clone().json(); return res.ok && !json.error; },
Related #218
Sorry, something went wrong.
No branches or pull requests
I have error when try to use ok handler. redux-api-middleware - 3.0.1
Error
The text was updated successfully, but these errors were encountered: