From f3d91af166cc99d1586a204c5993044ac0fddf34 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Wed, 15 May 2013 23:39:15 -0400 Subject: [PATCH] consolidated detail page sections --- MediaBrowser.Api/LibraryService.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/MediaBrowser.Api/LibraryService.cs b/MediaBrowser.Api/LibraryService.cs index 83c2ccb124..87bf08e636 100644 --- a/MediaBrowser.Api/LibraryService.cs +++ b/MediaBrowser.Api/LibraryService.cs @@ -434,16 +434,16 @@ namespace MediaBrowser.Api { 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) { - points += 1; + points += 3; } - // And another if within five years + // And more if within five years if (diff < 5) { - points += 1; + points += 3; } }