shawenguan 2 лет назад
Родитель
Сommit
f455353c33
1 измененных файлов с 3 добавлено и 2 удалено
  1. 3 2
      Scripts/thwj/thwjHelper.js

+ 3 - 2
Scripts/thwj/thwjHelper.js

@@ -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}`);