Skip to content

Commit dfe1967

Browse files
committed
fix issue with null text
1 parent 908c9de commit dfe1967

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/com/fuse/actions/scheduling/Engagement.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -706,7 +706,7 @@ public void validate() {
706706
Pattern p = Pattern.compile(emailRegex);
707707
String [] emails = this.distro.split(";");
708708
for(String mail : emails) {
709-
Matcher m = p.matcher(mail.trim());
709+
Matcher m = p.matcher(mail.toLowerCase().trim());
710710
if(m.matches())
711711
continue;
712712
else

0 commit comments

Comments
 (0)