From 4c06e3d4e2e098da5ffb2a31420628a6e24cfdf5 Mon Sep 17 00:00:00 2001 From: Daniel Wagner-Hall Date: Wed, 25 Feb 2026 11:32:05 +0000 Subject: [PATCH] Trim whitespace from GitHub usernames Every now and then people have a leading or trailing space in the GitHub form and it means they don't show up in the tracker. --- src/github_accounts.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/github_accounts.rs b/src/github_accounts.rs index a21f89d..87144d4 100644 --- a/src/github_accounts.rs +++ b/src/github_accounts.rs @@ -62,7 +62,7 @@ fn trainees_from_sheet(sheet: &Sheet) -> Result, ))); } - let github_login = GithubLogin::from(cell_string(&cells[3])); + let github_login = GithubLogin::from(cell_string(&cells[3]).trim().to_owned()); let email = cell_string(&cells[4]);