Fix sync with new native clients (#4932)

This commit is contained in:
Mathijs van Veluw
2024-09-09 11:36:37 +02:00
committed by GitHub
parent 66baa5e7d8
commit dca14285fd
4 changed files with 58 additions and 23 deletions

View File

@@ -490,7 +490,7 @@ async fn post_rotatekey(data: Json<KeyData>, headers: Headers, mut conn: DbConn,
// Bitwarden does not process the import if there is one item invalid.
// Since we check for the size of the encrypted note length, we need to do that here to pre-validate it.
// TODO: See if we can optimize the whole cipher adding/importing and prevent duplicate code and checks.
Cipher::validate_notes(&data.ciphers)?;
Cipher::validate_cipher_data(&data.ciphers)?;
let user_uuid = &headers.user.uuid;