diff --git a/packages/file-handling/src/fileupload.js b/packages/file-handling/src/fileupload.js index 3e538743d8efce68b73e20bf19357b385a62a818..6be78df53c24dcfdef022c9a435f31bb8122e1a3 100644 --- a/packages/file-handling/src/fileupload.js +++ b/packages/file-handling/src/fileupload.js @@ -225,14 +225,15 @@ export class FileUpload extends ScopedElementsMixin(VPULitElement) { /** * @param file + * @param params * @returns {Promise<void>} */ - async uploadFile(file) { + async uploadFile(file, params = {}) { this.uploadInProgress = true; this.sendStartEvent(file); - let url = this.url; + let url = new URL(this.url) + url.search = new URLSearchParams(params).toString(); let formData = new FormData(); - formData.append('file', file); // I got a 60s timeout in Google Chrome and found no way to increase that