diff --git a/src/commands/now_playing.rs b/src/commands/now_playing.rs index e3b5a5e..c90a3f0 100644 --- a/src/commands/now_playing.rs +++ b/src/commands/now_playing.rs @@ -1,6 +1,5 @@ use crate::music::music_queue; use crate::util::embed::Embed; -use futures::{FutureExt, TryFutureExt}; use serenity::all::{CommandInteraction, Context}; use serenity::builder::{CreateCommand, CreateEmbed}; @@ -45,7 +44,7 @@ pub async fn run(ctx: &Context, command: &CommandInteraction) -> CreateEmbed { .expect("Cannot get Songbird") .clone(); - let handler = match manager.get(*guild_id) { + let _ = match manager.get(*guild_id) { Some(handler) => handler, None => { return Embed::create_error_respose(