aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Controllers
diff options
context:
space:
mode:
authorcrobibero <cody@robibe.ro>2020-06-01 20:54:02 -0600
committercrobibero <cody@robibe.ro>2020-06-01 20:54:02 -0600
commitaed6f57f11e4d08372fcf456742bdaedea374f6d (patch)
tree5c95eeace6ebee305ae6a613b8fb48bef3ac280d /Jellyfin.Api/Controllers
parent1c471d58551043dab3c808952d9834163cac3078 (diff)
Remove invalid docs and null check
Diffstat (limited to 'Jellyfin.Api/Controllers')
-rw-r--r--Jellyfin.Api/Controllers/DisplayPreferencesController.cs10
1 files changed, 1 insertions, 9 deletions
diff --git a/Jellyfin.Api/Controllers/DisplayPreferencesController.cs b/Jellyfin.Api/Controllers/DisplayPreferencesController.cs
index 579b5df5d..35efe6b5f 100644
--- a/Jellyfin.Api/Controllers/DisplayPreferencesController.cs
+++ b/Jellyfin.Api/Controllers/DisplayPreferencesController.cs
@@ -35,7 +35,6 @@ namespace Jellyfin.Api.Controllers
/// <param name="userId">User id.</param>
/// <param name="client">Client.</param>
/// <response code="200">Display preferences retrieved.</response>
- /// <response code="404">Specified display preferences not found.</response>
/// <returns>An <see cref="OkResult"/> containing the display preferences on success, or a <see cref="NotFoundResult"/> if the display preferences could not be found.</returns>
[HttpGet("{DisplayPreferencesId}")]
[ProducesResponseType(StatusCodes.Status200OK)]
@@ -45,13 +44,7 @@ namespace Jellyfin.Api.Controllers
[FromQuery] [Required] string userId,
[FromQuery] [Required] string client)
{
- var result = _displayPreferencesRepository.GetDisplayPreferences(displayPreferencesId, userId, client);
- if (result == null)
- {
- return NotFound();
- }
-
- return result;
+ return _displayPreferencesRepository.GetDisplayPreferences(displayPreferencesId, userId, client);
}
/// <summary>
@@ -62,7 +55,6 @@ namespace Jellyfin.Api.Controllers
/// <param name="client">Client.</param>
/// <param name="displayPreferences">New Display Preferences object.</param>
/// <response code="200">Display preferences updated.</response>
- /// <response code="404">Specified display preferences not found.</response>
/// <returns>An <see cref="OkResult"/> on success, or a <see cref="NotFoundResult"/> if the display preferences could not be found.</returns>
[HttpPost("{DisplayPreferencesId}")]
[ProducesResponseType(StatusCodes.Status200OK)]