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: uploading the same files parallel #10156

Merged
merged 1 commit into from
Dec 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions changelog/unreleased/bugfix-parallel-uploads
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Bugfix: Uploading the same files parallel

An issue where uploading the same files parallel would cause the upload to fail has been fixed.

https://github.com/owncloud/web/pull/10156
https://github.com/owncloud/web/issues/9220
4 changes: 4 additions & 0 deletions packages/web-app-files/src/HandleUpload.ts
Original file line number Diff line number Diff line change
Expand Up @@ -370,6 +370,10 @@ export class HandleUpload extends BasePlugin {
* Eventually triggers to upload in Uppy.
*/
async handleUpload(files: UppyFile[]) {
if (!files.length) {
return
}

let filesToUpload = this.prepareFiles(files)

// quota check
Expand Down