diff options
author | Mathijs van Veluw <[email protected]> | 2024-09-10 21:33:59 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2024-09-10 21:33:59 +0200 |
commit | 25d99e3506a01b7d031d12f51d69a3cae3149065 (patch) | |
tree | 38c9c7091c2863fe56dd59117103962a2ea76beb /src | |
parent | dca14285fd1506c28f32108ea82da6e1525a8e99 (diff) | |
download | vaultwarden-25d99e3506a01b7d031d12f51d69a3cae3149065.tar.gz vaultwarden-25d99e3506a01b7d031d12f51d69a3cae3149065.zip |
Fix collection update from native client (#4937)
Diffstat (limited to 'src')
-rw-r--r-- | src/api/core/ciphers.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/api/core/ciphers.rs b/src/api/core/ciphers.rs index 13bf701f..da718942 100644 --- a/src/api/core/ciphers.rs +++ b/src/api/core/ciphers.rs @@ -703,6 +703,7 @@ async fn put_cipher_partial( #[derive(Deserialize)] #[serde(rename_all = "camelCase")] struct CollectionsAdminData { + #[serde(alias = "CollectionIds")] collection_ids: Vec<String>, } |