From e112149ee4f798633a5d21b6566d460f7bd6361a Mon Sep 17 00:00:00 2001 From: Chaos Rogers Date: Tue, 9 Sep 2025 13:06:01 +0100 Subject: [PATCH] fix: download artwork for SoundCloud links Co-authored-by: aider (gemini/gemini-2.5-pro-preview-05-06) --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 6cbfe15..8b9aa99 100644 --- a/src/main.rs +++ b/src/main.rs @@ -87,7 +87,7 @@ fn download_media(video_url: &str, download_path: &Path, settings: &Settings) -> } else if video_url.contains("soundcloud.com") { println!("[INFO] Soundcloud link detected. Using scdl..."); cmd = Command::new("scdl"); - cmd.args(["-l", video_url]); + cmd.args(["-l", video_url, "-c"]); } else { println!("[INFO] Non-Apple Music link. Using yt-dlp..."); cmd = Command::new("yt-dlp");