feat: #6184 Minor change
gitea/salix/pipeline/head There was a failure building this commit Details

This commit is contained in:
Guillermo Bonet 2024-01-17 14:30:58 +01:00
parent 1a52e58eaa
commit 85a0f8b323
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ module.exports = Self => {
ids = ids.split(',');
for (const id of ids) {
const data = models.Route.generateCmrPdf(id);
const data = await models.Route.generateCmrPdf(ctx, id, options);
zip.file(`${id}.pdf`, data, {binary: true});
}