diff options
| author | crobibero <cody@robibe.ro> | 2021-03-26 17:40:55 -0600 |
|---|---|---|
| committer | crobibero <cody@robibe.ro> | 2021-03-26 17:40:55 -0600 |
| commit | afe3b5999e00c7c705afe224e41755f5426e6b85 (patch) | |
| tree | aa2d19720b7eae646b4aed2fb78be33301f4d1dd /Jellyfin.Api/Controllers/SubtitleController.cs | |
| parent | 5b758c47119c0520ff543f7b8e812f67533ce4f2 (diff) | |
Fix route naming
Diffstat (limited to 'Jellyfin.Api/Controllers/SubtitleController.cs')
| -rw-r--r-- | Jellyfin.Api/Controllers/SubtitleController.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Api/Controllers/SubtitleController.cs b/Jellyfin.Api/Controllers/SubtitleController.cs index 7a44b26a4..1669a659d 100644 --- a/Jellyfin.Api/Controllers/SubtitleController.cs +++ b/Jellyfin.Api/Controllers/SubtitleController.cs @@ -196,7 +196,7 @@ namespace Jellyfin.Api.Controllers /// <param name="startPositionTicks">The start position of the subtitle in ticks.</param> /// <response code="200">File returned.</response> /// <returns>A <see cref="FileContentResult"/> with the subtitle file.</returns> - [HttpGet("Videos/{itemId}/{mediaSourceId}/Subtitles/{index}/Stream.{routeFormat}")] + [HttpGet("Videos/{routeItemId}/routeMediaSourceId/Subtitles/{routeIndex}/Stream.{routeFormat}")] [ProducesResponseType(StatusCodes.Status200OK)] [ProducesFile("text/*")] public async Task<ActionResult> GetSubtitle( |
