Skip to content

Commit

Permalink
check save path
Browse files Browse the repository at this point in the history
  • Loading branch information
CatAnnaDev committed Aug 26, 2024
1 parent 72f51a1 commit fcd8229
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/web_client/web.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ pub async fn download_build_video(path: &str, name: &str, mp: &Arc<MultiProgress
let ffmpeg = "ffmpeg";

#[cfg(target_os = "windows")]
let ffmpeg = env::current_exe().unwrap().parent().unwrap().join("utils/ffmpeg.exe"); // TODO change this
let ffmpeg = std::env::current_exe().unwrap().parent().unwrap().join("utils/ffmpeg.exe"); // TODO change this

let mut process = Command::new(ffmpeg).args(&[
"-protocol_whitelist",
Expand Down

0 comments on commit fcd8229

Please sign in to comment.