Merge pull request #4890 from nielsvanvelzen/4888-fix-search-hints

Fix search hint endpoint error
pull/4841/head
Joshua M. Boniface 4 years ago committed by GitHub
commit 7caba04c3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save