From 4233dbf3db773c2fc933618dd5789da87efaf5ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Garc=C3=ADa?= Date: Mon, 24 Jun 2024 19:44:06 +0200 Subject: [PATCH] Fix cipher creation on new android app (#4670) --- src/api/core/ciphers.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/api/core/ciphers.rs b/src/api/core/ciphers.rs index 9a4456a4..0884ef1f 100644 --- a/src/api/core/ciphers.rs +++ b/src/api/core/ciphers.rs @@ -797,7 +797,9 @@ async fn post_collections_admin( #[derive(Deserialize)] #[serde(rename_all = "camelCase")] struct ShareCipherData { + #[serde(alias = "Cipher")] cipher: CipherData, + #[serde(alias = "CollectionIds")] collection_ids: Vec, }