From 92381e75b273959d87c38af6d6e5c45ed8db91d1 Mon Sep 17 00:00:00 2001 From: Hussam Kayed Date: Wed, 18 Dec 2024 14:36:36 +0100 Subject: [PATCH] EW-830: changed default name of exported course --- .../common-cartridge/import/common-cartridge-file-parser.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/server/src/modules/common-cartridge/import/common-cartridge-file-parser.ts b/apps/server/src/modules/common-cartridge/import/common-cartridge-file-parser.ts index 847dfa66f35..cb7d51608db 100644 --- a/apps/server/src/modules/common-cartridge/import/common-cartridge-file-parser.ts +++ b/apps/server/src/modules/common-cartridge/import/common-cartridge-file-parser.ts @@ -39,6 +39,7 @@ export class CommonCartridgeFileParser { public getTitle(): string | undefined { const title = this.manifestParser.getTitle(); + if (title === '' || title === undefined) return 'Importiertes Spaltenboard'; return title; }