Skip to content
Snippets Groups Projects

Proposed fix for Bug 517118

Merged Eclipse Webmaster requested to merge bug-517118 into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -293,7 +293,7 @@ public class EclipseCommitValidationListener implements CommitValidationListener
*/
Id id = accountManager.lookup(AccountExternalId.SCHEME_MAILTO + author.getEmailAddress());
if (id == null)
id = accountManager.lookup(AccountExternalId.SCHEME_GERRIT + author.getEmailAddress());
id = accountManager.lookup(AccountExternalId.SCHEME_GERRIT + author.getEmailAddress().toLowerCase());
if (id == null) return null;
return factory.create(id);
} catch (AccountException e) {
Loading