Skip to content

Commit

Permalink
fix: var ref
Browse files Browse the repository at this point in the history
  • Loading branch information
asdocoder committed May 21, 2024
1 parent 1d54cdb commit 55d01fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/actionlib/ActionClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export default class ActionClient extends EventEmitter {
}
// remove the goal if it is cancelled or aborted
[5, 6].forEach((status) => {
if (statusMessage.statusList.includes(status)) {
if (statusMessage.status_list.includes(status)) {
delete this.goals[statusMessage.status.goal_id.id];
}
});
Expand Down

0 comments on commit 55d01fb

Please sign in to comment.