fix export fileName

This commit is contained in:
Philipinho 2024-11-30 20:40:53 +00:00
parent a25cf84671
commit ede5633415
2 changed files with 4 additions and 3 deletions

View File

@ -24,9 +24,10 @@ import { FastifyReply } from 'fastify';
import { sanitize } from 'sanitize-filename-ts';
import { getExportExtension } from './utils';
import { getMimeType } from '../../common/helpers';
import * as path from 'path';
@Controller()
export class ImportController {
export class ExportController {
constructor(
private readonly exportService: ExportService,
private readonly pageRepo: PageRepo,
@ -63,7 +64,7 @@ export class ImportController {
dto.format,
);
const newName = fileName + '.zip';
const newName = path.parse(fileName).name + '.zip';
res.headers({
'Content-Type': 'application/zip',

View File

@ -132,7 +132,7 @@ export class ExportService {
compression: 'DEFLATE',
});
const fileName = `${space.name}-space-export${getExportExtension(format)}.zip`;
const fileName = `${space.name}-space-export.zip`;
return {
fileBuffer: zipFile,
fileName,