This commit is contained in:
Manav Rathi 2024-04-13 17:00:50 +05:30
parent 07fa5cb83d
commit 1ffa905f99
No known key found for this signature in database

View file

@ -1110,7 +1110,7 @@ class ExportService {
file,
);
await ensureElectron().saveStreamToDisk(
getFileExportPath(collectionExportPath, imageExportName),
`${collectionExportPath}/${imageExportName}`,
imageStream,
);
@ -1122,12 +1122,12 @@ class ExportService {
);
try {
await ensureElectron().saveStreamToDisk(
getFileExportPath(collectionExportPath, videoExportName),
`${collectionExportPath}/${videoExportName}`,
videoStream,
);
} catch (e) {
await ensureElectron().deleteFile(
getFileExportPath(collectionExportPath, imageExportName),
`${collectionExportPath}/${imageExportName}`,
);
throw e;
}
@ -1192,8 +1192,3 @@ class ExportService {
}
export default new ExportService();
export const getFileExportPath = (
collectionExportPath: string,
fileExportName: string,
) => `${collectionExportPath}/${fileExportName}`;