This commit is contained in:
shanmite 2021-01-06 22:11:25 +08:00
parent 2a2550de8f
commit 1cbb1324e2

View File

@ -13,8 +13,8 @@ const COOKIE_ARR = [COOKIE, COOKIE_2, COOKIE_3, COOKIE_4, COOKIE_5];
COOKIE_ARR.forEach(async (cookie, num) => {
console.log(typeof cookie);
console.log([...cookie]);
if (typeof cookie === 'undefined') return;
console.log(cookie === '');
if (typeof cookie === 'undefined' && cookie === '') return;
await setGlobalVar(cookie, SCKEY).then(async () => {
const { start, isMe, checkCookie } = require("./lib/lottery-in-nodejs");
const isRight = await checkCookie(num + 1);