Skip to content

Commit

Permalink
修复000结束判断
Browse files Browse the repository at this point in the history
  • Loading branch information
zzliux committed Jan 15, 2025
1 parent 544931f commit 626cc09
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/common/funcList/000_结束判断.ts
Original file line number Diff line number Diff line change
Expand Up @@ -222,9 +222,10 @@ export class Func000 implements IFuncOrigin {
thisScript.myToast(`等待${toSleep}ms`);
sleep(toSleep);
thisScript.rerun();
}
if (typeof thisconf.scheme_switch_enabled !== 'undefined' && thisconf.scheme_switch_enabled) {
thisconf.after_operation = '切换方案';
} else if (typeof thisconf.after_operation === 'undefined') {
if (typeof thisconf.scheme_switch_enabled !== 'undefined' && thisconf.scheme_switch_enabled) {
thisScript.rerun(thisconf.next_scheme);
}
}
}

Expand Down

0 comments on commit 626cc09

Please sign in to comment.