From 752f4125d47a107fc4a496ac934dee69ae523bfb Mon Sep 17 00:00:00 2001 From: Nathan Leniz Date: Sat, 21 Mar 2015 16:36:20 +0900 Subject: [PATCH] Change decay rate of hot stories to 48 hours --- controllers/story.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controllers/story.js b/controllers/story.js index a48b011289..1bcc4f1037 100644 --- a/controllers/story.js +++ b/controllers/story.js @@ -19,7 +19,7 @@ function hotRank(timeValue, rank) { */ var hotness; var z = Math.log(rank) / Math.log(10); - hotness = z + (timeValue / 45000000); + hotness = z + (timeValue / 1728000000); return hotness; }