update queued song #28

Merged
phoenix merged 20 commits from update_queued_song into devel 2025-06-28 23:23:42 +00:00
Showing only changes of commit 6e3d4a76ef - Show all commits

View File

@@ -1,8 +1,6 @@
pub fn path_buf_to_string(path: &std::path::PathBuf) -> String {
let s_path = match path.to_str() {
pub fn path_buf_to_string(path: &std::path::Path) -> String {
match path.to_str() {
Some(val) => String::from(val),
None => String::new(),
};
s_path
}
}