Browse Source

Fix cipher creation on new android app

pull/4670/head
Daniel García 10 months ago
parent
commit
07b2cbca85
No known key found for this signature in database GPG Key ID: FC8A7D14C3CD543A
  1. 2
      src/api/core/ciphers.rs

2
src/api/core/ciphers.rs

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

Loading…
Cancel
Save