diff --git a/src/commands/play.rs b/src/commands/play.rs index 1384a04..ada08e5 100644 --- a/src/commands/play.rs +++ b/src/commands/play.rs @@ -56,6 +56,7 @@ async fn get_tracks( if stderr.contains("YouTube said: The playlist does not exist.") { return Err("YouTube said: The playlist does not exist.".into()); } + return Err(stderr.into()); } return Err("No tracks found".into()); }