diff --git a/versions/main/_base_controller_interface_8cpp_source.html b/versions/main/_base_controller_interface_8cpp_source.html index 5e2b2b97..7893cdaf 100644 --- a/versions/main/_base_controller_interface_8cpp_source.html +++ b/versions/main/_base_controller_interface_8cpp_source.html @@ -355,7 +355,7 @@
250
251void BaseControllerInterface::trigger(const std::string& trigger_name) {
-
252 if (std::find(triggers_.cbegin(), triggers_.cend(), trigger_name) != triggers_.cend()) {
+
252 if (std::find(triggers_.cbegin(), triggers_.cend(), trigger_name) == triggers_.cend()) {
253 RCLCPP_ERROR(
254 get_node()->get_logger(), "Failed to trigger: could not find trigger with name '%s'.", trigger_name.c_str());
255 return;