Skip to content

Commit

Permalink
fix: 增加点赞间隔
Browse files Browse the repository at this point in the history
  • Loading branch information
14790897 committed Aug 6, 2024
1 parent dc96005 commit dc472be
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bypasscf.js
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ async function login(page, username, password) {
]); //注意如果登录失败,这里会一直等待跳转,导致脚本执行失败 这点四个月之前你就发现了结果今天又遇到(有个用户遇到了https://linux.do/t/topic/169209/82),但是你没有在这个报错你提示我8.5
} catch (error) {
console.error(
"Navigation timed out in login.请检查用户名密码是否正确(注意密码中是否有特殊字符,需要外面加上双引号指明这是字符串,如果密码里面有双引号则需要转义):",
"Navigation timed out in login.请检查用户名密码是否正确(注意密码中是否有特殊字符,需要外面加上双引号指明这是字符串,如果密码里面有双引号则需要转义), 此外GitHub action不需要加上引号:",
error
);
throw new Error("Navigation timed out in login.");
Expand Down
2 changes: 1 addition & 1 deletion external.js
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@
} else {
console.log("clickCounter:", clickCounter);
}
}, index * 2000); // 这里的2000毫秒是两次点击之间的间隔,可以根据需要调整
}, index * 3000); // 这里的3000毫秒是两次点击之间的间隔,可以根据需要调整
});
}
const button = document.createElement("button");
Expand Down
2 changes: 1 addition & 1 deletion index_passage_list.js
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@
} else {
console.log("clickCounter:", clickCounter);
}
}, index * 2000); // 这里的2000毫秒是两次点击之间的间隔,可以根据需要调整
}, index * 3000); // 这里的3000毫秒是两次点击之间的间隔,可以根据需要调整
});
}
const button = document.createElement("button");
Expand Down

0 comments on commit dc472be

Please sign in to comment.