From 6243b62d3b9cfc4a3cb670986dcb22b11a20d5d7 Mon Sep 17 00:00:00 2001 From: Sean O'Connor Date: Wed, 1 Apr 2026 19:34:27 -0400 Subject: [PATCH] Fix robot action ID namespacing for animation detection --- src/server/services/trial-execution.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/server/services/trial-execution.ts b/src/server/services/trial-execution.ts index 2b9476a..202ae71 100755 --- a/src/server/services/trial-execution.ts +++ b/src/server/services/trial-execution.ts @@ -810,10 +810,10 @@ export class TrialExecutionEngine { } } - // Prepare robot action + // Prepare robot action - use action.type which contains the namespaced format (plugin.actionId) const robotAction: RobotAction = { pluginName: plugin.name, - actionId: actionDefinition.id, + actionId: action.type, // e.g., "nao6-ros2.play_animation_bow" parameters, implementation: actionDefinition.implementation, };