From ed24fa0413e32956a49b6cf53bc1bf017efb513c Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Mon, 4 Nov 2024 21:19:34 +0100 Subject: fix(yt/select/cmds): Fix future incompatibility In rust edition 2024 this type can no longer be auto-injected. --- yt/src/select/cmds.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yt/src/select/cmds.rs b/yt/src/select/cmds.rs index f1488bc..d0f8ba5 100644 --- a/yt/src/select/cmds.rs +++ b/yt/src/select/cmds.rs @@ -82,7 +82,7 @@ pub async fn handle_select_cmd( .map(|entry| add_entry(app, entry)) .collect(); - join_all(futures).await.into_iter().collect::>()?; + join_all(futures).await.into_iter().collect::>()?; } } else { bail!("Your playlist does not seem to have any entries!") -- cgit 1.4.1