From 9e25e00a6915e2fe1f0096851ad245729c67dca6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Mrozek?= Date: Thu, 24 Nov 2022 14:24:44 +0100 Subject: [PATCH] style: skip returns --- server/src/infra/mail.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/src/infra/mail.rs b/server/src/infra/mail.rs index fbd620a..bbac6c0 100644 --- a/server/src/infra/mail.rs +++ b/server/src/infra/mail.rs @@ -54,15 +54,15 @@ To reset your password please visit the following URL: {}/reset-password/step2/{ Please contact an administrator if you did not initiate the process.", username, domain, token ); - return send_email(to, "[LLDAP] Password reset requested", body, options).await; + send_email(to, "[LLDAP] Password reset requested", body, options).await } pub async fn send_test_email(to: Mailbox, options: &MailOptions) -> Result<()> { - return send_email( + send_email( to, "LLDAP test email", "The test is successful! You can send emails from LLDAP".to_string(), options, ) - .await; + .await }