Fix cipher creation on new android app (#4670)

This commit is contained in:
Daniel García 2024-06-24 19:44:06 +02:00 committed by GitHub
parent a2bf8def2a
commit 4233dbf3db
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -797,7 +797,9 @@ async fn post_collections_admin(
#[derive(Deserialize)] #[derive(Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
struct ShareCipherData { struct ShareCipherData {
#[serde(alias = "Cipher")]
cipher: CipherData, cipher: CipherData,
#[serde(alias = "CollectionIds")]
collection_ids: Vec<String>, collection_ids: Vec<String>,
} }