Comment out stream server start call

Comment out the streamServer.startStreamServer() call. I forgot it didnt actually work and didnt mean to commit it
This commit is contained in:
bwmp
2025-10-26 14:15:36 -07:00
committed by GitHub
parent 3f46291359
commit 17bcd12859

View File

@@ -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");
}