diff --git a/core/src/module.cpp b/core/src/module.cpp index 0ee1c9e5..b35ff17a 100644 --- a/core/src/module.cpp +++ b/core/src/module.cpp @@ -143,7 +143,7 @@ bool ModuleManager::instanceEnabled(std::string name) { std::string ModuleManager::getInstanceModuleName(std::string name) { if (instances.find(name) == instances.end()) { spdlog::error("Cannot get module name of'{0}', instance doesn't exist", name); - return false; + return ""; } return std::string(instances[name].module.info->name); }