浏览代码

fix channel count

Luke Pulverenti 11 年之前
父节点
当前提交
f3454d3bf8

+ 1 - 1
MediaBrowser.Api/SimilarItemsHelper.cs

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

+ 5 - 2
MediaBrowser.Server.Implementations/LiveTv/LiveTvManager.cs

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