Skip to content

Commit

Permalink
Fix problem of duplicate robot poses
Browse files Browse the repository at this point in the history
  • Loading branch information
andchiind committed Feb 3, 2025
1 parent d9c4e12 commit 0055972
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/api/Services/EchoService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ public async Task<IList<MissionTask>> MissionTasksFromEchoTag(EchoTag echoTag)
inspection: inspection,
tagLink: echoTag.URL,
tagId: echoTag.TagId,
robotPose: echoTag.Pose,
robotPose: new Pose(echoTag.Pose),
poseId: echoTag.PoseId,
taskOrder: echoTag.PlanOrder,
taskDescription: inspection.InspectionTargetName,
Expand Down

0 comments on commit 0055972

Please sign in to comment.