Compare commits

..

No commits in common. "42f301455a18a8d3a023374b3d7b21a067c286c0" and "72c4b1e7943d26ec97d74acabc9df9e8e358592e" have entirely different histories.

2 changed files with 1 additions and 3 deletions

2
.gitignore vendored
View file

@ -2,13 +2,11 @@
/.idea /.idea
.env .env
*.env
result result
/result /result
*.db *.db
*.db.*
tmp/ tmp/
tmp.* tmp.*

View file

@ -59,7 +59,7 @@ pub mod link {
// check if email exists // check if email exists
let details = match get_server_member_email(&db, email).await { let details = match get_server_member_email(&db, email).await {
None => { None => {
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() return "Please check it is your preferred contact on https://ulwolves.ie/memberships/profile and that you are fully paid up.".to_string()
} }
Some(x) => x, Some(x) => x,
}; };