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
No response
// package.json { "@uppy/aws-s3": "4.2.3", "@uppy/core": "4.4.2", }
upload-error
@uppy/aws-s3 plugin
uppy.on("upload-error", (file, error, response) => { console.log("Error response:", response) // <--- Error response: undefined });
response
undefined
I've found that the response is not passed in the current implementation here:
uppy/packages/@uppy/aws-s3/src/index.ts
Line 834 in 985e4ca
uppy.on("upload-error", (file, error, response) => { console.log("Error response:", response) // <--- Error response: <response should be passed here> });
undefined is found instead of the actual response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Initial checklist
Link to runnable example
No response
Steps to reproduce
upload-error
event (with@uppy/aws-s3 plugin
)response
isundefined
I've found that the response is not passed in the current implementation here:
uppy/packages/@uppy/aws-s3/src/index.ts
Line 834 in 985e4ca
Expected behavior
Actual behavior
undefined is found instead of the actual response
The text was updated successfully, but these errors were encountered: