From f8bbe3d2371292fdc9912a86b44ae1afe8c07dc8 Mon Sep 17 00:00:00 2001 From: Mathijs van Veluw Date: Sat, 9 Aug 2025 22:51:31 +0200 Subject: [PATCH] Update src/api/core/ciphers.rs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Daniel GarcĂ­a --- src/api/core/ciphers.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/core/ciphers.rs b/src/api/core/ciphers.rs index 6b277d98..d8e622f2 100644 --- a/src/api/core/ciphers.rs +++ b/src/api/core/ciphers.rs @@ -1587,7 +1587,7 @@ async fn move_cipher_selected( let mut single_cipher: Option = None; // TODO: Convert this to use a single query (or at least less) to update all items - // Find all ciphers a user has access too, all others will be ignored + // Find all ciphers a user has access to, all others will be ignored let accessible_ciphers = Cipher::find_by_user_and_ciphers(user_id, &data.ids, &mut conn).await; let accessible_ciphers_count = accessible_ciphers.len(); for cipher in accessible_ciphers {