This commit is contained in:
Damien Ostler 2024-03-01 18:32:36 -05:00
parent 11ac86e7cc
commit 9767743d83
2 changed files with 2 additions and 2 deletions

View File

@ -86,7 +86,7 @@ public class ArtistRequestsController: Controller
if(reference==null) if(reference==null)
return NotFound(); return NotFound();
var content = await _storageService.DownloadImageAsync(reference.FileReference); var content = await _storageService.DownloadImageAsync(reference.FileReference);
return new FileStreamResult(content, "application/octet-stream"); return new FileStreamResult(content, "image/*");
} }
[HttpGet] [HttpGet]