-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Do not close the uploading page while uploading a video, without a warning message #4432
Comments
By default, file uploads should continue until the UploadxService is destroyed. But here, for some reason, it forces the complete removal of incomplete uploads from the server: PeerTube/client/src/app/+videos/+video-edit/video-add-components/video-upload.component.ts Lines 116 to 118 in 4d3e611
|
So is this a bug or? I don't understand.... By the way, using the 3.4.0 Peertube version. This https://videos.trom.tf/about/instance |
@kukhariev because we don't store enough information to recreate the upload component if it is destroyed by changing views. So far, in what we implemented, resumable doesn't mean "close everything and come back to the same state", but just that unstable connections will eventually go through. |
So is Peertube planning to add a more solid resumable-uploads feature? Would be very useful. At least show a warning to users when they close the page where an upload is happening. I think that's a must. |
The original post was about a confirmation popup, no? I think that's for sure a good idea. The upload process right now is way too disrespectful of the user's time, really. |
A confirmation popup exists on the video edit/update page, I guess we can reuse that functionality. |
Should be fixed by 221d876 |
Do not delete a partially uploaded file when closing the upload page fixes Chocobozzz#5078, Chocobozzz#4432
If you upload a video and close the tab by mistake while uploading, that can be a disaster if you wait hours to upload. You should get a confirmation popup to close it.
Also, resumable uploads seem to not work. If I close the uploading window and then start to upload the same video again, it won't resume.
The text was updated successfully, but these errors were encountered: