fix: replace "pingvin share" with dynamic app name

This commit is contained in:
Elias Schneider
2023-03-12 20:13:55 +01:00
parent 0ce8b528e1
commit f55aa80516
2 changed files with 5 additions and 3 deletions

View File

@@ -51,7 +51,7 @@ export class FileController {
const zip = this.fileService.getZip(shareId);
res.set({
"Content-Type": "application/zip",
"Content-Disposition": contentDisposition(`pingvin-share-${shareId}.zip`),
"Content-Disposition": contentDisposition(`${shareId}.zip`),
});
return new StreamableFile(zip);