Merge pull request #243 from terakilobyte/master
Change decay rate of hot stories to 48 hours
This commit is contained in:
@ -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;
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user