We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8dfd972 commit f6ef4b4Copy full SHA for f6ef4b4
1 file changed
src/index.ts
@@ -64,7 +64,7 @@ export async function doAttendanceForAccount(token: string, options: Options) {
64
65
addMessage('## 明日方舟签到')
66
let successAttendance = 0
67
- const characterList = list.map(i => i.bindingList).flat()
+ const characterList = list.filter(i => i.appCode === 'arknights').map(i => i.bindingList).flat()
68
const maxRetries = parseInt(process.env.MAX_RETRIES, 10) || 3 // 添加最大重试次数
69
await Promise.all(characterList.map(async (character) => {
70
console.log(`将签到第${successAttendance + 1}个角色`)
0 commit comments