mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Merge pull request #4890 from nielsvanvelzen/4888-fix-search-hints
Fix search hint endpoint error (cherry picked from commit 7caba04c3c22b417434e5612067ab8d960c9cb92) Signed-off-by: Joshua M. Boniface <joshua@boniface.me>
This commit is contained in:
parent
4a2b143028
commit
a16cf8ec0a
@ -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…
x
Reference in New Issue
Block a user