diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2020-09-23 19:58:06 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-23 19:58:06 +0900 |
| commit | 1657af482a186c99e3fd41a757fa74c040459771 (patch) | |
| tree | c1ea4d89d9badf7128456ef0076de1d12f12bc72 | |
| parent | 3b19da97806b138e54b779877cc51de1b840376f (diff) | |
| parent | 95265288a6d2d28e6a7c8aa6861a54539978f6cd (diff) | |
Merge pull request #4082 from cromefire/patch-4
More expressive names for the VideoStream API
| -rw-r--r-- | Jellyfin.Api/Controllers/VideosController.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Jellyfin.Api/Controllers/VideosController.cs b/Jellyfin.Api/Controllers/VideosController.cs index cce4cfbe3..4de7aac71 100644 --- a/Jellyfin.Api/Controllers/VideosController.cs +++ b/Jellyfin.Api/Controllers/VideosController.cs @@ -326,9 +326,9 @@ namespace Jellyfin.Api.Controllers /// <param name="streamOptions">Optional. The streaming options.</param> /// <response code="200">Video stream returned.</response> /// <returns>A <see cref="FileResult"/> containing the audio file.</returns> - [HttpGet("{itemId}/{stream=stream}.{container?}", Name = "GetVideoStream_2")] + [HttpGet("{itemId}/{stream=stream}.{container?}", Name = "GetVideoStreamWithExt")] [HttpGet("{itemId}/stream")] - [HttpHead("{itemId}/{stream=stream}.{container?}", Name = "HeadVideoStream_2")] + [HttpHead("{itemId}/{stream=stream}.{container?}", Name = "HeadVideoStreamWithExt")] [HttpHead("{itemId}/stream", Name = "HeadVideoStream")] [ProducesResponseType(StatusCodes.Status200OK)] [ProducesVideoFile] |
