Skip to content

Commit

Permalink
bug fix: special messages were not identified
Browse files Browse the repository at this point in the history
  • Loading branch information
facontidavide committed Mar 2, 2024
1 parent aaedfb4 commit bc5dede
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion plotjuggler_plugins/ParserROS/ros2_parser.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ class ParserFactoryROS2 : public ParserFactoryPlugin
}

MessageParserPtr createParser(const std::string& topic_name,
const std::string& type_name, const std::string& schema,
const std::string& type_name,
const std::string& schema,
PlotDataMapRef& data) override
{
std::string msg_type =
Expand Down
2 changes: 1 addition & 1 deletion plotjuggler_plugins/ToolboxRemote/toolbox_remote.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ void ToolboxRemote::onFileStatisticsReceived(const mcap_api::Statistics &statist
channel.schema_data.size());

auto parser = parser_factory->createParser(channel.topic,
channel.schema_encoding,
channel.schema_name,
schema,
_plot_data);
_parsers_by_channel.insert( {channel.id, parser} );
Expand Down

0 comments on commit bc5dede

Please sign in to comment.