mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 22:17:25 -04:00
Merge pull request #4890 from nielsvanvelzen/4888-fix-search-hints
Fix search hint endpoint error
(cherry picked from commit 7caba04c3c
)
Signed-off-by: Joshua M. Boniface <joshua@boniface.me>
This commit is contained in:
parent
4a2b143028
commit
a16cf8ec0a
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ namespace Emby.Server.Implementations.Library
|
|||
|
||||
if (query.Limit.HasValue)
|
||||
{
|
||||
results = results.GetRange(0, query.Limit.Value);
|
||||
results = results.GetRange(0, Math.Min(query.Limit.Value, results.Count));
|
||||
}
|
||||
|
||||
return new QueryResult<SearchHintInfo>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue