clear: 删除未使用的参数

This commit is contained in:
luying
2023-10-25 14:35:56 +08:00
parent c7aa3ec12f
commit 5f9484f303

View File

@@ -72,7 +72,7 @@ export class NovemberData extends ActivityBase {
if (playerData.records) {
this.records = playerData?.records || [];
for (const data of playerData.records) {
let { todayIndex, isSuccess, hasPass } = data;
let { todayIndex, isSuccess } = data;
if (todayIndex == this.todayIndex && isSuccess) this.todayPlayCnt++;
if (isSuccess) this.playCnt++;
}