We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c17b64 commit 158aad0Copy full SHA for 158aad0
src/rcl_bindings.cpp
@@ -1219,8 +1219,7 @@ std::unique_ptr<rmw_qos_profile_t> GetQosProfileFromObject(
1219
qos_profile->durability = static_cast<rmw_qos_durability_policy_t>(
1220
Nan::To<uint32_t>(durability).FromJust());
1221
qos_profile->avoid_ros_namespace_conventions =
1222
- avoid_ros_namespace_conventions->BooleanValue(
1223
- currentContent->GetIsolate());
+ Nan::To<bool>(avoid_ros_namespace_conventions).FromJust();
1224
1225
return qos_profile;
1226
}
0 commit comments