diff --git a/src/commands/import.rs b/src/commands/import.rs index e386f63..a85a68d 100644 --- a/src/commands/import.rs +++ b/src/commands/import.rs @@ -22,10 +22,6 @@ async fn encrypt_account( master_pass: Arc, failed: &Mutex<&mut Vec>, ) { - if !account.validate() { - failed.lock().push(account.name); - return; - } let name = account.name.clone(); match spawn_blocking(move || account.into_account(user_id, &master_pass)).await { Ok(Ok(account)) => match account.insert(db).await {