From 17bcd1285902f88e2a945fce90b4b29d10d6d4ff Mon Sep 17 00:00:00 2001 From: bwmp Date: Sun, 26 Oct 2025 14:15:36 -0700 Subject: [PATCH] Comment out stream server start call Comment out the streamServer.startStreamServer() call. I forgot it didnt actually work and didnt mean to commit it --- .../CommandManager/CommandManager/commands/device_commands.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/CommandManager/CommandManager/commands/device_commands.cpp b/components/CommandManager/CommandManager/commands/device_commands.cpp index 37f64f1..d0dfed8 100644 --- a/components/CommandManager/CommandManager/commands/device_commands.cpp +++ b/components/CommandManager/CommandManager/commands/device_commands.cpp @@ -113,7 +113,7 @@ CommandResult startStreamingCommand() esp_timer_handle_t activateStreamingTimer; esp_timer_create(&args, &activateStreamingTimer); esp_timer_start_once(activateStreamingTimer, pdMS_TO_TICKS(150)); - streamServer.startStreamServer(); + // streamServer.startStreamServer(); return CommandResult::getSuccessResult("Streaming starting"); }