chore: pass sdk param true

This commit is contained in:
Rohit Rajan
2026-01-04 18:57:46 +05:30
parent aa3b7672b7
commit 0785a264a2

View File

@@ -430,7 +430,7 @@ router.post("/sdk/robots/:id/execute", requireAPIKey, async (req: AuthenticatedR
logger.info(`[SDK] Starting execution for robot ${robotId}`);
const runId = await handleRunRecording(robotId, user.id.toString());
const runId = await handleRunRecording(robotId, user.id.toString(), true);
if (!runId) {
throw new Error('Failed to start robot execution');
}