Inline 2
This commit is contained in:
parent
07fa5cb83d
commit
1ffa905f99
1 changed files with 3 additions and 8 deletions
|
@ -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}`;
|
||||
|
|
Loading…
Add table
Reference in a new issue