1
0
Fork 1
Spiegel von https://github.com/dani-garcia/vaultwarden.git synchronisiert 2024-06-02 22:08:59 +02:00
Dieser Commit ist enthalten in:
Samuel Reed 2024-04-27 07:04:33 +08:00 committet von GitHub
Commit 012cbb97b8
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: B5690EEEBB952194
2 geänderte Dateien mit 4 neuen und 4 gelöschten Zeilen

Datei anzeigen

@ -379,8 +379,8 @@ pub async fn update_cipher_from_data(
} }
if let Some(note) = &data.Notes { if let Some(note) = &data.Notes {
if note.len() > 10_000 { if note.len() > 50_000 {
err!("The field Notes exceeds the maximum encrypted value length of 10000 characters.") err!("The field Notes exceeds the maximum encrypted value length of 50000 characters.")
} }
} }

Datei anzeigen

@ -82,11 +82,11 @@ impl Cipher {
let mut validation_errors = serde_json::Map::new(); let mut validation_errors = serde_json::Map::new();
for (index, cipher) in cipher_data.iter().enumerate() { for (index, cipher) in cipher_data.iter().enumerate() {
if let Some(note) = &cipher.Notes { if let Some(note) = &cipher.Notes {
if note.len() > 10_000 { if note.len() > 50_000 {
validation_errors.insert( validation_errors.insert(
format!("Ciphers[{index}].Notes"), format!("Ciphers[{index}].Notes"),
serde_json::to_value([ serde_json::to_value([
"The field Notes exceeds the maximum encrypted value length of 10000 characters.", "The field Notes exceeds the maximum encrypted value length of 50000 characters.",
]) ])
.unwrap(), .unwrap(),
); );