fix channel count

This commit is contained in:
Luke Pulverenti 2014-03-13 05:00:47 -04:00
parent 37a69d78e1
commit f3454d3bf8
2 changed files with 6 additions and 3 deletions

View file

@ -153,7 +153,7 @@ namespace MediaBrowser.Api
if (!string.IsNullOrEmpty(item1.OfficialRating) && string.Equals(item1.OfficialRating, item2.OfficialRating, StringComparison.OrdinalIgnoreCase))
{
points += 1;
points += 10;
}
// Find common genres

View file

@ -174,7 +174,7 @@ namespace MediaBrowser.Server.Implementations.LiveTv
var result = new QueryResult<ChannelInfoDto>
{
Items = returnList.ToArray(),
TotalRecordCount = returnList.Count
TotalRecordCount = allChannels.Count
};
return result;
@ -985,6 +985,9 @@ namespace MediaBrowser.Server.Implementations.LiveTv
entities = entities.Where(i => i.IsParentalAllowed(currentUser));
}
var entityList = entities.ToList();
entities = entityList;
if (query.StartIndex.HasValue)
{
entities = entities.Skip(query.StartIndex.Value);
@ -1006,7 +1009,7 @@ namespace MediaBrowser.Server.Implementations.LiveTv
return new QueryResult<RecordingInfoDto>
{
Items = returnArray,
TotalRecordCount = returnArray.Length
TotalRecordCount = entityList.Count
};
}