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