From 90bc694427803f6565e78800c3a92686c1d1fc8a Mon Sep 17 00:00:00 2001 From: Gabriel Fontes Date: Fri, 28 Jan 2022 15:32:01 -0300 Subject: [PATCH] debug a bit more --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/discord/mod.rs | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) 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);