We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 544931f commit 626cc09Copy full SHA for 626cc09
src/common/funcList/000_结束判断.ts
@@ -222,9 +222,10 @@ export class Func000 implements IFuncOrigin {
222
thisScript.myToast(`等待${toSleep}ms`);
223
sleep(toSleep);
224
thisScript.rerun();
225
- }
226
- if (typeof thisconf.scheme_switch_enabled !== 'undefined' && thisconf.scheme_switch_enabled) {
227
- 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);
228
+ }
229
}
230
231
0 commit comments