This commit is contained in:
syuilo 2018-11-03 11:36:11 +09:00
parent 223c578734
commit 7e5dbb2ba5
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69

View file

@ -230,7 +230,7 @@ export default abstract class Chart<T> {
null;
// ログ取得
const logs = await this.collection.find({
let logs = await this.collection.find({
group: group,
span: span,
date: {
@ -245,6 +245,27 @@ export default abstract class Chart<T> {
}
});
// 要求された範囲にログがひとつもなかったら
if (logs.length == 0) {
// もっとも新しいログを持ってくる
// (すくなくともひとつログが無いと隙間埋めできないため)
const recentLog = await this.collection.findOne({
group: group,
span: span
}, {
sort: {
date: -1
},
fields: {
_id: 0
}
});
if (recentLog) {
logs = [recentLog];
}
}
// 整形
for (let i = (range - 1); i >= 0; i--) {
const current =