mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-09-27 02:41:17 +00:00
fix: swtich start print command from http to mqtt command
This commit is contained in:
@@ -1409,9 +1409,10 @@ int OrcaPrinterAgent::start_print(PrintParams params, OnUpdateStatusFn update_fn
|
|||||||
if (update_fn)
|
if (update_fn)
|
||||||
update_fn(PrintingStageSending, 0, "Starting print...");
|
update_fn(PrintingStageSending, 0, "Starting print...");
|
||||||
|
|
||||||
const int start_rc = cloud->start_cloud_print_job(params.dev_id, job_id, remote_gcode_name(params), /*start=*/true);
|
result = start_sdcard_print(params, update_fn, cancel_fn);
|
||||||
if (start_rc != BAMBU_NETWORK_SUCCESS)
|
|
||||||
return start_rc;
|
if (result != BAMBU_NETWORK_SUCCESS)
|
||||||
|
return result;
|
||||||
|
|
||||||
if (update_fn)
|
if (update_fn)
|
||||||
update_fn(PrintingStageFinished, 100, "Print started");
|
update_fn(PrintingStageFinished, 100, "Print started");
|
||||||
|
|||||||
Reference in New Issue
Block a user