浏览代码

consolidated detail page sections

Luke Pulverenti 12 年之前
父节点
当前提交
f3d91af166
共有 1 个文件被更改,包括 4 次插入4 次删除
  1. 4 4
      MediaBrowser.Api/LibraryService.cs

+ 4 - 4
MediaBrowser.Api/LibraryService.cs

@@ -434,16 +434,16 @@ namespace MediaBrowser.Api
             {
             {
                 var diff = Math.Abs(item1.ProductionYear.Value - item2.ProductionYear.Value);
                 var diff = Math.Abs(item1.ProductionYear.Value - item2.ProductionYear.Value);
 
 
-                // Add a point if they came out within the same decade
+                // Add if they came out within the same decade
                 if (diff < 10)
                 if (diff < 10)
                 {
                 {
-                    points += 1;
+                    points += 3;
                 }
                 }
 
 
-                // And another if within five years
+                // And more if within five years
                 if (diff < 5)
                 if (diff < 5)
                 {
                 {
-                    points += 1;
+                    points += 3;
                 }
                 }
             }
             }