mirror of
https://github.com/docmost/docmost
synced 2025-03-28 21:13:28 +00:00
fix export fileName
This commit is contained in:
parent
a25cf84671
commit
ede5633415
@ -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',
|
||||
|
@ -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,
|
||||
|
Loading…
x
Reference in New Issue
Block a user