🐛Fix checking files in S3 storage (#425)

This commit is contained in:
Anton Shepilov
2024-03-09 08:37:57 +01:00
committed by GitHub
parent 301efd6aaa
commit 4ea6c3b215
@@ -429,7 +429,7 @@ export class FileServiceImpl {
id: externalId,
company_id: "00000000-0000-4000-0000-000000000000",
});
const exist = await gr.platformServices.storage.exists(getFilePath(file));
const exist = await gr.platformServices.storage.exists(getFilePath(file) + "/chunk/1");
if (exist) {
return { exist: true, file };
} else {