File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1193,7 +1193,7 @@ async function start() {
11931193 }
11941194
11951195 //检查每日答题
1196- if ( settings . ExamPractice && taskProgress [ 5 ] . currentScore != taskProgress [ 5 ] . dayMaxScore ) {
1196+ if ( settings . ExamPractice && taskProgress [ 3 ] . currentScore != taskProgress [ 3 ] . dayMaxScore ) {
11971197 tasks [ 2 ] = false ; //只要还有要做的,就当做没完成
11981198 console . log ( "3.做每日答题" ) ;
11991199 await doExamPractice ( ) ;
@@ -1214,9 +1214,9 @@ async function start() {
12141214 } else {
12151215 tasks[3] = true;
12161216 }*/
1217-
1217+ task [ 4 ] = true ;
12181218 //检查专项练习
1219- if ( settings . ExamPaper && taskProgress [ 4 ] . currentScore == 0 ) {
1219+ /* if (settings.ExamPaper && taskProgress[4].currentScore == 0) {
12201220 tasks[4] = false;//只要还有要做的,就当做没完成
12211221 console.log("5.做专项练习");
12221222 let result = await doExamPaper();
@@ -1226,7 +1226,7 @@ async function start() {
12261226 }
12271227 } else {
12281228 tasks[4] = true;
1229- }
1229+ }*/
12301230
12311231 if ( tasks [ 0 ] && tasks [ 1 ] && tasks [ 2 ] && tasks [ 3 ] && tasks [ 4 ] ) {
12321232 //如果检查都做完了,就不用继续了
You can’t perform that action at this time.
0 commit comments