diff options
Diffstat (limited to 'server/src/modules_handler.cpp')
-rw-r--r-- | server/src/modules_handler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/modules_handler.cpp b/server/src/modules_handler.cpp index eb08261..90328b1 100644 --- a/server/src/modules_handler.cpp +++ b/server/src/modules_handler.cpp @@ -125,6 +125,7 @@ std::string modules_handler::list_modules_single_type_internal(const std::list<m std::string buf; for(auto i : modules) { + //TODO: additional info for each module type buf += "\tName: "; buf += i->get_module_info().name; buf += "\n\tDescription: " + i->get_module_info().description; @@ -199,7 +200,6 @@ void modules_handler::sync_downloads(std::map<int, download_internal_s> &downloa for(auto it : d->get_downloads()) { downloads[id].module_name = d->get_module_info().name; - downloads[id].core_id = id; //is it needed ? downloads[id].module_id = it.id; id++; } |