From ec5b3e4b84a334330f7c06a3c592076a65423f2d Mon Sep 17 00:00:00 2001 From: Nathan Date: Sat, 21 Mar 2015 16:41:29 +0900 Subject: [PATCH] Change from 1 billion seconds to 172 million. --- controllers/story.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controllers/story.js b/controllers/story.js index 1bcc4f1037..7f38d7cb1a 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 / 172800000); return hotness; }