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