diff options
| author | Joshua M. Boniface <joshua@boniface.me> | 2020-11-19 13:08:28 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-19 13:08:28 -0500 |
| commit | 212c5318ae6dd26e56f10a36b7b85f0bae1bd02d (patch) | |
| tree | 92ffcaa990dbed73f9dbd5e03ebd06e45b390671 /Jellyfin.Api/Controllers/LiveTvController.cs | |
| parent | 75d4a573a3f3e05319c0fa8d5ea44942ae70533f (diff) | |
| parent | 4c394eec90922b58ae5feecb4ed2713c24945f43 (diff) | |
Merge pull request #4507 from BaronGreenback/Spelling
Corrects spelling in comments
Diffstat (limited to 'Jellyfin.Api/Controllers/LiveTvController.cs')
| -rw-r--r-- | Jellyfin.Api/Controllers/LiveTvController.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Jellyfin.Api/Controllers/LiveTvController.cs b/Jellyfin.Api/Controllers/LiveTvController.cs index 29c0f1df4..41eb4f030 100644 --- a/Jellyfin.Api/Controllers/LiveTvController.cs +++ b/Jellyfin.Api/Controllers/LiveTvController.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Diagnostics.CodeAnalysis; @@ -1155,7 +1155,8 @@ namespace Jellyfin.Api.Controllers /// <param name="newDevicesOnly">Only discover new tuners.</param> /// <response code="200">Tuners returned.</response> /// <returns>An <see cref="OkResult"/> containing the tuners.</returns> - [HttpGet("Tuners/Discvover")] + [HttpGet("Tuners/Discvover", Name = "DiscvoverTuners")] + [HttpGet("Tuners/Discover")] [Authorize(Policy = Policies.DefaultAuthorization)] [ProducesResponseType(StatusCodes.Status200OK)] public async Task<ActionResult<IEnumerable<TunerHostInfo>>> DiscoverTuners([FromQuery] bool newDevicesOnly = false) |
