diff options
| author | Niels van Velzen <git@ndat.nl> | 2021-06-12 15:38:13 +0200 |
|---|---|---|
| committer | Niels van Velzen <git@ndat.nl> | 2021-06-12 15:38:13 +0200 |
| commit | 0a0e10e8540fddf59f330b07b413b1ce417e7c8f (patch) | |
| tree | db3072c3881a48a33a5567118e82445ffdd83e50 /Jellyfin.Api/Controllers/SubtitleController.cs | |
| parent | 93dbbfea03612e5b0321c31b80207a00a1691619 (diff) | |
Fix routeMediaSourceId route parameter in SubtitleController GetSubtitle
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 1669a659d..b473574e0 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/{routeItemId}/routeMediaSourceId/Subtitles/{routeIndex}/Stream.{routeFormat}")] + [HttpGet("Videos/{routeItemId}/{routeMediaSourceId}/Subtitles/{routeIndex}/Stream.{routeFormat}")] [ProducesResponseType(StatusCodes.Status200OK)] [ProducesFile("text/*")] public async Task<ActionResult> GetSubtitle( |
