Fix communication router

This commit is contained in:
2025-07-13 20:48:00 -04:00
parent 78a17af883
commit f94f3bbc8b
4 changed files with 19 additions and 22 deletions

View File

@@ -12,6 +12,7 @@
#include <string>
#include <format>
#include <iostream>
#include <sstream>
// todo: clean this up (strange to be a constructor) also need to add more details, need to add to routing table
@@ -36,7 +37,7 @@ void mDNSDiscoveryService::set_connected_boards(const std::vector<int>& boards)
std::stringstream ss;
for (int i = 0; i < boards.size(); i++) {
ss << boards[i];
ss << std::to_string(boards[i]);
if (i < boards.size() - 1) {
ss << ',';
}