Fix limit parameter error for search hints endpoint

This commit is contained in:
Niels van Velzen 2020-12-30 11:16:09 +01:00
parent 054adf6379
commit 2bb84c0675

View File

@ -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>