Skip to content

Commit

Permalink
fix: fix out of map path name parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
hiikariri committed Mar 16, 2024
1 parent 7991c1f commit f4993eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/akushon/action/node/action_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ void ActionManager::load_config(const std::string & path)
}

// remove "/" from the start of the name string
name.erase(0, 1);
// name.erase(0, 1);
try {
std::ifstream file(file_name);
nlohmann::json action_data = nlohmann::json::parse(file);
Expand Down

0 comments on commit f4993eb

Please sign in to comment.