From c6f7b14e4062d6bc7dbb7ae4fc562546542fee30 Mon Sep 17 00:00:00 2001 From: Marcus Goectau Date: Mon, 4 Dec 2023 16:12:05 -0800 Subject: [PATCH] Update content type --- .../CSETWeb_Api/CSETWeb_ApiCore/Controllers/CRRMController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CSETWebApi/CSETWeb_Api/CSETWeb_ApiCore/Controllers/CRRMController.cs b/CSETWebApi/CSETWeb_Api/CSETWeb_ApiCore/Controllers/CRRMController.cs index ecda6bd3ac..b08067380c 100644 --- a/CSETWebApi/CSETWeb_Api/CSETWeb_ApiCore/Controllers/CRRMController.cs +++ b/CSETWebApi/CSETWeb_Api/CSETWeb_ApiCore/Controllers/CRRMController.cs @@ -40,7 +40,7 @@ public IActionResult BulkExportAssessments(Guid[] guidsToExport) return StatusCode(404, "No Assessments with the provided GUIDs were found for export."); } - return File(assessmentsExportArchive, "application/octet-stream", "BulkAssessmentExport.zip"); + return File(assessmentsExportArchive, "application/zip", "BulkAssessmentExport.zip"); } catch (Exception exc) {