Skip to content
New issue

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

Fix with mux video example #37434

Merged
merged 9 commits into from
Jun 11, 2022
2 changes: 1 addition & 1 deletion contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ Issues are opened with one of these labels:

- `template: story` - a feature request, converted to an [💡 Ideas discussion](https://github.com/vercel/next.js/discussions/categories/ideas)
- `template: bug` - unverified issue with Next.js itself, or one of the examples in the [`examples`](https://github.com/vercel/next.js/tree/canary/examples) folder
- `template: documentation` - feedback for improvement or unverfied issue with the Next.js documentation
- `template: documentation` - feedback for improvement or unverified issue with the Next.js documentation
leerob marked this conversation as resolved.
Show resolved Hide resolved

In case of a bug report, a maintainer looks at the provided reproduction. If the reproduction is missing or insufficient, a `please add a complete reproduction` label is added. If a reproduction is not provided for more than 30 days, the issue becomes stale and will be automatically closed. If a reproduction is provided within 30 days, the `please add a complete reproduction` label is removed and the issue will not become stale anymore.

Expand Down
2 changes: 1 addition & 1 deletion examples/with-mux-video/components/upload-form.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const UploadForm = () => {
})

upload.on('error', (err) => {
setErrorMessage(err.detail)
setErrorMessage(err.detail.message)
})

upload.on('progress', (progress) => {
Expand Down