aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Controllers/AttachmentsController.cs
diff options
context:
space:
mode:
authorcrobibero <cody@robibe.ro>2020-04-21 13:57:11 -0600
committercrobibero <cody@robibe.ro>2020-04-21 13:57:11 -0600
commit466e20ea8cb8c262605d06dc01eff4463559d9b0 (patch)
tree6824979032f80d5e1a11fb96d65853f31aa4633b /Jellyfin.Api/Controllers/AttachmentsController.cs
parent08eba82bb7bebe277f6b106fa48994bb98c3dd41 (diff)
move to ActionResult<T>
Diffstat (limited to 'Jellyfin.Api/Controllers/AttachmentsController.cs')
-rw-r--r--Jellyfin.Api/Controllers/AttachmentsController.cs5
1 files changed, 2 insertions, 3 deletions
diff --git a/Jellyfin.Api/Controllers/AttachmentsController.cs b/Jellyfin.Api/Controllers/AttachmentsController.cs
index aeeaf5cbd..351401de1 100644
--- a/Jellyfin.Api/Controllers/AttachmentsController.cs
+++ b/Jellyfin.Api/Controllers/AttachmentsController.cs
@@ -44,10 +44,9 @@ namespace Jellyfin.Api.Controllers
/// <returns>Attachment.</returns>
[HttpGet("{VideoID}/{MediaSourceID}/Attachments/{Index}")]
[Produces("application/octet-stream")]
- [ProducesResponseType(typeof(FileStreamResult), StatusCodes.Status200OK)]
+ [ProducesResponseType(StatusCodes.Status200OK)]
[ProducesResponseType(StatusCodes.Status404NotFound)]
- [ProducesResponseType(typeof(string), StatusCodes.Status500InternalServerError)]
- public async Task<IActionResult> GetAttachment(
+ public async Task<ActionResult<FileStreamResult>> GetAttachment(
[FromRoute] Guid videoId,
[FromRoute] string mediaSourceId,
[FromRoute] int index)