Merge pull request #287 from SorenHugo/main
Some checks failed
Update README Table / update-readme (push) Has been cancelled

fix: 更新爱玛签到逻辑,修复新签到用户从第二天起无法签到的问题
This commit is contained in:
smallfawn 2026-04-17 21:33:05 +08:00 committed by GitHub
commit e5903b39b4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -60,7 +60,7 @@ async function signIn(token, index) {
);
const data = searchRes.data;
if (data.content && data.content.signed === 1) {
if (data.content && data.content.signStatus === 1) {
$.log(`✅ 账号【${index}】今日已签到!`);
return;
}