fix(server): チャートのcleanでエラーが出る可能性がある問題を修正

This commit is contained in:
syuilo 2022-02-09 03:55:49 +09:00
parent 12ca0f9a63
commit 3e1de8203d

View file

@ -496,6 +496,10 @@ export default abstract class Chart<T extends Schema> {
}
}
if (Object.keys(columns).length === 0) {
return;
}
await Promise.all([
this.repositoryForHour.createQueryBuilder()
.update()