fix: empty file can't be uploaded in chrome

This commit is contained in:
Elias Schneider
2023-03-14 20:24:21 +01:00
parent 2158df4228
commit 9f2097e788

View File

@@ -32,7 +32,8 @@ export class FileController {
) {
const { id, name, chunkIndex, totalChunks } = query;
const data = body.toString().split(",")[1];
// Data can be empty if the file is empty
const data = body.toString().split(",")[1] ?? "";
return await this.fileService.create(
data,