Revert "fix"

This reverts commit 9767743d8302cebeb33f85bcf6603a85b22c0d07.
This commit is contained in:
Damien Ostler 2024-03-01 18:35:07 -05:00
parent 9767743d83
commit acd022cf41
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -51,7 +51,7 @@ public class ArtistReviewsController: Controller
return Ok(result);
}
[HttpGet]
[Authorize("read:artist")]
[Route("Reviews/Count")]