diff --git a/Cargo.lock b/Cargo.lock index a074527..de61f0a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -486,7 +486,7 @@ dependencies = [ [[package]] name = "disconic" -version = "0.1.2-pre.2" +version = "0.1.2-pre.3" dependencies = [ "anyhow", "dotenv", diff --git a/Cargo.toml b/Cargo.toml index 3faad8d..db90dea 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "disconic" description = "Discord bot for interacting with subsonic music libraries" -version = "0.1.2-pre.2" +version = "0.1.2-pre.3" authors = [ "Gabriel Fontes " ] edition = "2018" homepage = "https://misterio.me" diff --git a/src/discord/mod.rs b/src/discord/mod.rs index f6e6074..77f2f98 100644 --- a/src/discord/mod.rs +++ b/src/discord/mod.rs @@ -281,6 +281,7 @@ async fn queue_song( client: &sunk::Client, ) -> Result<()> { let input = load_song(song, client).await?; + println!("{:?}", input); let call = join_channel(&ctx, &msg).await?; let mut handler = call.lock().await; handler.enqueue_source(input);