Added check
Some checks failed
Rust Build / Check (pull_request) Successful in 28s
Rust Build / Test Suite (pull_request) Successful in 32s
Rust Build / Rustfmt (pull_request) Failing after 22s
Rust Build / Clippy (pull_request) Successful in 29s
Rust Build / build (pull_request) Successful in 36s

This commit is contained in:
2025-06-20 20:00:00 -04:00
parent d7aaea4b02
commit 2f5fbde5bc

View File

@@ -218,6 +218,12 @@ pub async fn apply_metadata(
Some(val) => String::from(val),
None => String::new(),
};
if s_path.is_empty() {
println!("Song queue path is empty");
return Ok(false);
}
let types = song_io::metadata_types().await;
for t in types {