From ede563341511c1a32665853c06938b481519924c Mon Sep 17 00:00:00 2001 From: Philipinho <16838612+Philipinho@users.noreply.github.com> Date: Sat, 30 Nov 2024 20:40:53 +0000 Subject: [PATCH] fix export fileName --- apps/server/src/integrations/export/export.controller.ts | 5 +++-- apps/server/src/integrations/export/export.service.ts | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/apps/server/src/integrations/export/export.controller.ts b/apps/server/src/integrations/export/export.controller.ts index f8fbbf95..83626f99 100644 --- a/apps/server/src/integrations/export/export.controller.ts +++ b/apps/server/src/integrations/export/export.controller.ts @@ -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', diff --git a/apps/server/src/integrations/export/export.service.ts b/apps/server/src/integrations/export/export.service.ts index c2b61a05..de9f943f 100644 --- a/apps/server/src/integrations/export/export.service.ts +++ b/apps/server/src/integrations/export/export.service.ts @@ -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,