Merge pull request #243 from terakilobyte/master

Change decay rate of hot stories to 48 hours
This commit is contained in:
Quincy Larson
2015-03-21 00:39:29 -07:00

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