From 5b21bc47bd20164b2a57048d07e66af1d4ea4c96 Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Sun, 29 Sep 2024 20:07:01 +0100 Subject: [PATCH] fix: improve the comment back Relates to #21 --- src/commands/link_email.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/link_email.rs b/src/commands/link_email.rs index e597ea3..4961dbb 100644 --- a/src/commands/link_email.rs +++ b/src/commands/link_email.rs @@ -59,7 +59,7 @@ pub mod link { // check if email exists let details = match get_server_member_email(&db, email).await { None => { - return "Please check it is your preferred contact on https://ulwolves.ie/memberships/profile and that you are fully paid up.".to_string() + return "Please check it matches (including case) your preferred contact on https://ulwolves.ie/memberships/profile and that you are fully paid up.".to_string() } Some(x) => x, };