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

View File

@ -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<String>,
}