From 1c7bd2f6fae9e2cf81a8edcf976d501dae43aecd Mon Sep 17 00:00:00 2001 From: timedout Date: Sat, 3 Jan 2026 16:22:49 +0000 Subject: [PATCH] style: Remove unnecessary then() calls in chain --- src/api/client/keys.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/api/client/keys.rs b/src/api/client/keys.rs index 892b4a83..eaa2ea05 100644 --- a/src/api/client/keys.rs +++ b/src/api/client/keys.rs @@ -551,7 +551,6 @@ where Some((server, response)) }) - .then(async |v| v) .collect::>() .await .into_iter(); @@ -686,7 +685,6 @@ pub(crate) async fn claim_keys_helper( .and_then(|res| res); Some((server, response)) }) - .then(async |v| v) .collect::>() .await .into_iter();