|
|
@@ -134,15 +134,16 @@ async function checkTryExploreAll() {
|
|
|
let userLst = getAllUserList();
|
|
|
let succCnt = 0;
|
|
|
for (let info of userLst) {
|
|
|
- let isSucc = await checkExplore(info);
|
|
|
+ let isSucc = await checkExploreOne(info);
|
|
|
if (isSucc) {
|
|
|
succCnt++;
|
|
|
}
|
|
|
break;
|
|
|
}
|
|
|
+ return true;
|
|
|
}
|
|
|
|
|
|
-async function checkExplore(accountData) {
|
|
|
+async function checkExploreOne(accountData) {
|
|
|
let phone = accountData.phone;
|
|
|
let password = accountData.password;
|
|
|
lk.log(`开始登录搜索检查:${phone}----${password}`);
|