Skip to content
Snippets Groups Projects
Unverified Commit 344d182c authored by Richard Cordovano's avatar Richard Cordovano Committed by GitHub
Browse files

Merge pull request #1976 from kellykelly3/893-normalize-emails-with-semicolon

893 normalize emails with semicolon
parents b79beb0b f54fec55
Branches
No related tags found
No related merge requests found
......@@ -100,7 +100,7 @@ public static String normalizeEmailAddress(String emailAddress) throws InvalidAc
throw new InvalidAccountIDException(String.format("Input string is not a valid email address: %s", emailAddress));
}
return emailAddress.toLowerCase().trim();
return emailAddress.toLowerCase().replace(";", "").trim();
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment