fix uploadedFile being null

This commit is contained in:
被遗忘的记忆
2025-02-19 01:12:38 +08:00
committed by GitHub
parent 5b35e5dac7
commit 823883f2a1
+1 -1
View File
@@ -166,7 +166,7 @@ class YouProvider {
} }
// 判断是否单账号模式 // 判断是否单账号模式
this.isSingleSession = (totalSessions === 1); this.isSingleSession = (totalSessions === 1) || (process.env.USE_MANUAL_LOGIN === "true");
console.log(`开启 ${this.isSingleSession ? "单账号模式" : "多账号模式"}`); console.log(`开启 ${this.isSingleSession ? "单账号模式" : "多账号模式"}`);
// 执行验证 // 执行验证