#6386 - Download method add file with extension #1993

Merged
jsegarra merged 2 commits from 6386_imageWithNoFormat into dev 2024-02-14 08:13:56 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 9448b40533 - Show all commits

View File

@ -87,6 +87,6 @@ module.exports = Self => {
await fs.access(file.path);
const stream = fs.createReadStream(file.path);
return [stream, file.contentType, `filename="${file.name}"`];
return [stream, file.contentType, `filename="${fileName}"`];
};
};