#21_Normalise-email-inputs #23

Merged
silver merged 2 commits from #21_Normalise-email-inputs into main 2024-09-29 19:07:38 +00:00
Showing only changes of commit 5b21bc47bd - Show all commits

View file

@ -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,
};