From 0785a264a273cfbef8130d1b803dcfd251e86544 Mon Sep 17 00:00:00 2001 From: Rohit Rajan Date: Sun, 4 Jan 2026 18:57:46 +0530 Subject: [PATCH] chore: pass sdk param true --- server/src/api/sdk.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/api/sdk.ts b/server/src/api/sdk.ts index dabd309c..c275ee42 100644 --- a/server/src/api/sdk.ts +++ b/server/src/api/sdk.ts @@ -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'); }