This commit is contained in:
syuilo 2018-06-11 11:27:21 +09:00
parent 7d7193cb63
commit 7cca509eb3

View file

@ -50,7 +50,7 @@ module.exports = (params, user) => new Promise(async (res, rej) => {
}
const hots = data[0].tags
.sort((a, b) => a.count - b.count)
.sort((a, b) => b.count - a.count)
.map(tag => tag.tag)
.slice(0, 10);
@ -76,7 +76,5 @@ module.exports = (params, user) => new Promise(async (res, rej) => {
chart: countsLog.map(counts => counts[i])
}));
console.log(stats);
res(stats);
});