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; }