diff --git a/src-tauri/src/commands/ai_video.rs b/src-tauri/src/commands/ai_video.rs index 9ed7a21..e19aeb6 100644 --- a/src-tauri/src/commands/ai_video.rs +++ b/src-tauri/src/commands/ai_video.rs @@ -52,12 +52,10 @@ async fn execute_python_command(_app: tauri::AppHandle, args: &[String]) -> Resu Ok(process) => { println!("Successfully started Python process"); child = Some(process); - break; } Err(e) => { last_error = format!("Failed to process: {}", e); println!("{}", last_error); - continue; } }