Skip to content

Commit

Permalink
Fix typo from PR comment
Browse files Browse the repository at this point in the history
  • Loading branch information
sea-bass committed Nov 14, 2023
1 parent 637a3a6 commit 5a62c9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/Action.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Action.prototype.sendGoal = function(request, resultCallback, feedbackCallback,
failedCallback(message.values);
}
} else if (message.op === 'action_feedback' && typeof feedbackCallback === 'function') {
feedbackCallback(new ActionResult(message.values));
feedbackCallback(new ActionFeedback(message.values));
} else if (message.op === 'action_result' && typeof resultCallback === 'function') {
resultCallback(new ActionResult(message.values));
}
Expand Down

0 comments on commit 5a62c9d

Please sign in to comment.