mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-06 05:55:48 +01:00
closes #3949
This commit is contained in:
@@ -270,7 +270,7 @@ function getHourlyStatsForSet(set, hour, numHours, callback) {
|
||||
}
|
||||
|
||||
hoursArr.forEach(function(term, index) {
|
||||
terms[term] = counts[index] || 0;
|
||||
terms[term] = parseInt(counts[index], 10) || 0;
|
||||
});
|
||||
|
||||
var termsArr = [];
|
||||
|
||||
Reference in New Issue
Block a user