From 9c5d9eea2334aeab74fdc54273b9d741c1634cc7 Mon Sep 17 00:00:00 2001 From: Michael Q Larson Date: Sat, 21 Mar 2015 00:47:21 -0700 Subject: [PATCH] try shorter decay rate --- controllers/story.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controllers/story.js b/controllers/story.js index 1bcc4f1037..82032ba752 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 / 1728000000); + hotness = z + (timeValue / 115200000); return hotness; }