fix: pass step_type through response file for diff_review routing

This commit is contained in:
2026-03-10 15:02:24 +09:00
parent 8fbf6bf6b7
commit 7982263fcd
6 changed files with 6 additions and 3 deletions

View File

@@ -2105,7 +2105,7 @@ async function processResponseFile(filePath) {
const pendingFile = path.join(pendingDir, `${resp.request_id}.json`);
let sessionId = '';
let isDomObserver = false;
let pendingStepType = '';
let pendingStepType = resp.step_type || ''; // from bot's response (new)
let pendingStepIndex = -1;
if (fs.existsSync(pendingFile)) {
try {

File diff suppressed because one or more lines are too long