Skip to content

Commit

Permalink
path fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vasilymilovidov committed Oct 16, 2023
1 parent bfb32d8 commit fbcd28f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src-tauri/src/webaudio/superdough.rs
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ pub fn create_filepath_generic(url_string: &str, dirname: &str) -> (Url, String,
.and_then(Iterator::last)
.and_then(|name| if name.is_empty() { None } else { Some(name) })
.unwrap_or("tmp.ben");
let file_path = format!("/Users/vasiliymilovidov/samples/{}{}", dirname, filename);
let file_path = format!("samples/{}{}", dirname, filename);
let file_path_clone = file_path.clone();

(url, file_path, file_path_clone)
Expand Down

0 comments on commit fbcd28f

Please sign in to comment.