diff --git a/src/api/core/ciphers.rs b/src/api/core/ciphers.rs index 0cfcd201..1168a0f7 100644 --- a/src/api/core/ciphers.rs +++ b/src/api/core/ciphers.rs @@ -690,7 +690,7 @@ fn post_attachment(uuid: String, data: Data, content_type: &ContentType, headers let mut attachment = Attachment::new(file_name, cipher.uuid.clone(), name, size); attachment.key = attachment_key.clone(); - attachment.save(&conn)?; + attachment.save(&conn).expect("Error saving attachment"); } _ => error!("Invalid multipart name"), }