fix: statistics details failure

This commit is contained in:
GweesinChan 2024-07-28 13:08:17 +08:00
parent fca0f6c724
commit c9d055592f
1 changed files with 4 additions and 1 deletions

View File

@ -114,7 +114,10 @@ async function bean() {
}
}
} else {
$.errorMsg = `数据异常`;
// 完全无数据时才抛出异常,否则返回之前统计出来的数据
if (!todayArr.length && !yesterdayArr.length) {
$.errorMsg = `数据异常`;
}
// $.msg($.name, ``, `账号${$.index}${$.nickName}\n${$.errorMsg}`);
t = 1;
}