Skip to content

Commit

Permalink
fix parsers names
Browse files Browse the repository at this point in the history
  • Loading branch information
facontidavide committed Aug 29, 2023
1 parent e8d7648 commit bf027a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plotjuggler_plugins/ParserROS/ros1_parser.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class ParserFactoryROS1 : public ParserFactoryPlugin
}
const char* encoding() const override
{
return "ros1";
return "ros1msg";
}

MessageParserPtr createParser(const std::string& topic_name,
Expand Down
2 changes: 1 addition & 1 deletion plotjuggler_plugins/ParserROS/ros2_parser.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class ParserFactoryROS2 : public ParserFactoryPlugin
}
const char* encoding() const override
{
return "cdr";
return "ros2msg";
}

MessageParserPtr createParser(const std::string& topic_name,
Expand Down

0 comments on commit bf027a7

Please sign in to comment.