Browse Source

Fix cipher creation on new android app (#4670)

pull/4671/head
Daniel García 7 months ago
committed by GitHub
parent
commit
4233dbf3db
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      src/api/core/ciphers.rs

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

Loading…
Cancel
Save