diff --git a/Jellyfin.Api/Controllers/SearchController.cs b/Jellyfin.Api/Controllers/SearchController.cs
index 15a650bf97..2ee3ef25b3 100644
--- a/Jellyfin.Api/Controllers/SearchController.cs
+++ b/Jellyfin.Api/Controllers/SearchController.cs
@@ -10,9 +10,9 @@ using MediaBrowser.Controller.Entities.Audio;
using MediaBrowser.Controller.Entities.TV;
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.LiveTv;
-using MediaBrowser.Controller.Net;
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Search;
+using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
@@ -22,7 +22,7 @@ namespace Jellyfin.Api.Controllers
/// Search controller.
///
[Route("/Search/Hints")]
- [Authenticated]
+ [Authorize]
public class SearchController : BaseJellyfinApiController
{
private readonly ISearchEngine _searchEngine;
@@ -52,9 +52,9 @@ namespace Jellyfin.Api.Controllers
///
/// Gets the search hint result.
///
- /// The record index to start at. All items with a lower index will be dropped from the results.
- /// The maximum number of records to return.
- /// Supply a user id to search within a user's library or omit to search all.
+ /// Optional. The record index to start at. All items with a lower index will be dropped from the results.
+ /// Optional. The maximum number of records to return.
+ /// Optional. Supply a user id to search within a user's library or omit to search all.
/// The search term to filter on.
/// Optional filter whether to include people.
/// Optional filter whether to include media.
@@ -117,11 +117,11 @@ namespace Jellyfin.Api.Controllers
IsSports = isSports
});
- return Ok(new SearchHintResult
+ return new SearchHintResult
{
TotalRecordCount = result.TotalRecordCount,
SearchHints = result.Items.Select(GetSearchHintResult).ToArray()
- });
+ };
}
///