1.0.14 Package Updates and Assets fix

This commit is contained in:
Allan Carr
2025-07-23 17:59:13 -07:00
parent d2bf897e2f
commit b23e446ed3
12 changed files with 216 additions and 57 deletions

View File

@@ -38,7 +38,7 @@ export async function jobsDownloadMedia(req: Request, res: Response) {
const fileOnDisk: Buffer = await fs.readFile(relativePathFn(jobid, file.name));
zip.file(baseName, fileOnDisk);
} catch (err) {
logger.warn(`Could not add file to zip: ${file.name}`, err);
logger.warning(`Could not add file to zip: ${file.name}`, err);
}
}
})