forked from FoundKeyGang/FoundKey
Remove needless await
This commit is contained in:
parent
45aae00ad5
commit
3ed76718a8
1 changed files with 2 additions and 2 deletions
|
@ -272,13 +272,13 @@ export default abstract class Chart<T extends Record<string, any>> {
|
||||||
latest as Record<string, any>);
|
latest as Record<string, any>);
|
||||||
|
|
||||||
// 空ログデータを作成
|
// 空ログデータを作成
|
||||||
data = await this.getNewLog(obj);
|
data = this.getNewLog(obj);
|
||||||
} else {
|
} else {
|
||||||
// ログが存在しなかったら
|
// ログが存在しなかったら
|
||||||
// (Misskeyインスタンスを建てて初めてのチャート更新時)
|
// (Misskeyインスタンスを建てて初めてのチャート更新時)
|
||||||
|
|
||||||
// 初期ログデータを作成
|
// 初期ログデータを作成
|
||||||
data = await this.getNewLog(null);
|
data = this.getNewLog(null);
|
||||||
|
|
||||||
logger.info(`${this.name}: Initial commit created`);
|
logger.info(`${this.name}: Initial commit created`);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue