fix(action): continue execution after final correction

This commit is contained in:
2026-04-27 17:01:50 +08:00
parent 9be499eb64
commit f957d7caa4

View File

@@ -330,7 +330,7 @@ public class ActionExecutor extends AbstractAgentModule.Standalone {
executableAction.setExecutingStage(nextStage); executableAction.setExecutingStage(nextStage);
} }
stageCursor.refresh(); stageCursor.refresh();
return stageCursor.next(); return true;
} }
} }