From 3048fbbdbf3e3942fc02cd6f6c7d0f78590c5f70 Mon Sep 17 00:00:00 2001 From: Damien Ostler Date: Fri, 1 Mar 2024 21:48:17 -0500 Subject: [PATCH] fix --- .../Controllers/CustomerRequestsController.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/comissions.app.api/Controllers/CustomerRequestsController.cs b/src/comissions.app.api/Controllers/CustomerRequestsController.cs index b40a9f3..e6ca34b 100644 --- a/src/comissions.app.api/Controllers/CustomerRequestsController.cs +++ b/src/comissions.app.api/Controllers/CustomerRequestsController.cs @@ -822,7 +822,6 @@ public class CustomerRequestsController : Controller if(reference==null) return NotFound(); var content = await _storageService.DownloadImageAsync(reference.FileReference); - var mimeType = _storageService.GetMimeType(reference.FileReference); return new FileStreamResult(content, "application/octet-stream"); } @@ -912,7 +911,6 @@ public class CustomerRequestsController : Controller if(reference==null) return NotFound(); var content = await _storageService.DownloadImageAsync(reference.FileReference); - var mimeType = _storageService.GetMimeType(reference.FileReference); return new FileStreamResult(content, "application/octet-stream"); } #endregion