From 25d99e3506a01b7d031d12f51d69a3cae3149065 Mon Sep 17 00:00:00 2001 From: Mathijs van Veluw Date: Tue, 10 Sep 2024 21:33:59 +0200 Subject: [PATCH] Fix collection update from native client (#4937) --- src/api/core/ciphers.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/api/core/ciphers.rs b/src/api/core/ciphers.rs index 13bf701f..da718942 100644 --- a/src/api/core/ciphers.rs +++ b/src/api/core/ciphers.rs @@ -703,6 +703,7 @@ async fn put_cipher_partial( #[derive(Deserialize)] #[serde(rename_all = "camelCase")] struct CollectionsAdminData { + #[serde(alias = "CollectionIds")] collection_ids: Vec, }