From ab3bc4040f0dc631474d2d06975fcdc9cc0d031e Mon Sep 17 00:00:00 2001 From: Timo Date: Thu, 21 Jan 2021 14:20:03 +0200 Subject: [PATCH] app name and flat file download, minor bugfix --- .../red-ui-http/src/lib/api/fileManagementController.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/red-ui-http/src/lib/api/fileManagementController.service.ts b/libs/red-ui-http/src/lib/api/fileManagementController.service.ts index f3528ed2a..c04cd8499 100644 --- a/libs/red-ui-http/src/lib/api/fileManagementController.service.ts +++ b/libs/red-ui-http/src/lib/api/fileManagementController.service.ts @@ -317,7 +317,7 @@ export class FileManagementControllerService { } // to determine the Accept header - let httpHeaderAccepts: string[] = ['*/*']; + const httpHeaderAccepts: string[] = ['*/*']; const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); if (httpHeaderAcceptSelected !== undefined) { headers = headers.set('Accept', httpHeaderAcceptSelected);