Skip to content

Commit

Permalink
Fixed missing fourth argument in track_rectangle
Browse files Browse the repository at this point in the history
  • Loading branch information
ddatsko authored and julianoes committed Apr 1, 2024
1 parent d376a14 commit 0eb1dea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mavsdk/plugins/camera_server/camera_server_impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1856,7 +1856,7 @@ std::optional<mavlink_command_ack_t> CameraServerImpl::process_track_rectangle_c
}

CameraServer::TrackRectangle track_rectangle{
command.params.param1, command.params.param2, command.params.param3};
command.params.param1, command.params.param2, command.params.param3, command.params.param4};

_last_track_rectangle_command = command;
_tracking_rectangle_callbacks(track_rectangle);
Expand Down

0 comments on commit 0eb1dea

Please sign in to comment.