Return array -> ienumerable

pull/2944/head
crobibero 4 years ago
parent cbd4a64e67
commit 35dbcea931

@ -120,7 +120,7 @@ namespace Jellyfin.Api.Controllers.Images
/// <returns>An <see cref="OkResult"/> containing the list of images.</returns> /// <returns>An <see cref="OkResult"/> containing the list of images.</returns>
[HttpGet("MediaInfo")] [HttpGet("MediaInfo")]
[ProducesResponseType(StatusCodes.Status200OK)] [ProducesResponseType(StatusCodes.Status200OK)]
public ActionResult<ImageByNameInfo[]> GetMediaInfoImages() public ActionResult<IEnumerable<ImageByNameInfo>> GetMediaInfoImages()
{ {
return Ok(GetImageList(_applicationPaths.MediaInfoImagesPath, false)); return Ok(GetImageList(_applicationPaths.MediaInfoImagesPath, false));
} }

Loading…
Cancel
Save