From 2db136a7369cb166c9a7f694925e3608b81c5589 Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Sun, 29 Sep 2024 20:04:08 +0100 Subject: [PATCH 1/2] git: greater coverage in the git-ignore --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 2405fba..9f3cc8d 100644 --- a/.gitignore +++ b/.gitignore @@ -2,11 +2,13 @@ /.idea .env +*.env result /result *.db +*.db.* tmp/ tmp.* -- 2.46.1 From 5b21bc47bd20164b2a57048d07e66af1d4ea4c96 Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Sun, 29 Sep 2024 20:07:01 +0100 Subject: [PATCH 2/2] 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, }; -- 2.46.1