fix: typo

This commit is contained in:
手瓜一十雪 2024-06-07 13:19:22 +08:00
parent a9da3279e8
commit 392eda1cbc
2 changed files with 2 additions and 2 deletions

@ -1 +1 @@
Subproject commit bf82b6fae1cbb28d769f6e380c60746313af1372
Subproject commit 247f59d2b70470e2864535c6c0a1ad336de0db14

View File

@ -73,7 +73,7 @@ const quickLoginQQ = cmdOptions.qq;
// napCatCore.qrLogin().then().catch(console.error);
// });
napCatCore.getQuickLoginList().then((res) => {
// 遍历 res.LocalLoginInfoList[x].isQuickLogin是否可以可以 res.LocalLoginInfoList[x].uin 转为string 加入string[] 最后遍历完成调用WebUiDataRuntime.setQQQuickLoginList
// 遍历 res.LocalLoginInfoList[x].isQuickLogin是否可以 res.LocalLoginInfoList[x].uin 转为string 加入string[] 最后遍历完成调用WebUiDataRuntime.setQQQuickLoginList
WebUiDataRuntime.setQQQuickLoginList(res.LocalLoginInfoList.filter((item) => item.isQuickLogin).map((item) => item.uin.toString()));
});