Change decay rate of hot stories to 48 hours

This commit is contained in:
Nathan Leniz
2015-03-21 16:36:20 +09:00
parent 2f240655a2
commit 752f4125d4

View File

@@ -19,7 +19,7 @@ function hotRank(timeValue, rank) {
*/ */
var hotness; var hotness;
var z = Math.log(rank) / Math.log(10); var z = Math.log(rank) / Math.log(10);
hotness = z + (timeValue / 45000000); hotness = z + (timeValue / 1728000000);
return hotness; return hotness;
} }