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
%
When % is present in the name of the file (e.g. lo%go.jpg), put(…) hangs forever.
lo%go.jpg
put(…)
onUploadProgress is called once with { loaded: 0, total: …, percentage: 0 } and then nothing else happens for a few minutes.
onUploadProgress
{ loaded: 0, total: …, percentage: 0 }
After a few minutes, an error is thrown: Error Vercel Blob: Unknown error, please visit https://vercel.com/help
Error Vercel Blob: Unknown error, please visit https://vercel.com/help
<input type="file" />
put("path", file)
put
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When
%
is present in the name of the file (e.g.lo%go.jpg
),put(…)
hangs forever.onUploadProgress
is called once with{ loaded: 0, total: …, percentage: 0 }
and then nothing else happens for a few minutes.After a few minutes, an error is thrown:
Error Vercel Blob: Unknown error, please visit https://vercel.com/help
How to reproduce?
<input type="file" />
in a form (I'm using Next.js so I upload the file with server actions)put("path", file)
put
never resolves and the request is left at "Pending" foreverThe text was updated successfully, but these errors were encountered: