shawenguan 2 роки тому
батько
коміт
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}`);