Skip to content
Snippets Groups Projects
Commit b4cba3d8 authored by srosse's avatar srosse
Browse files

OO-1094: the identity name to lower case as all the other inputs for the search

parent a8cacc0a
No related branches found
No related tags found
No related merge requests found
......@@ -179,7 +179,7 @@ public class ImportMemberOverviewIdentitiesController extends StepFormBasicContr
//search by names, must be lower case
List<Identity> identities = securityManager.findIdentitiesByName(identListLowercase);
for(Identity identity:identities) {
identListLowercase.remove(identity.getName());
identListLowercase.remove(identity.getName().toLowerCase());
if (!PersistenceHelper.containsPersistable(oks, identity)
&& !securityManager.isIdentityInSecurityGroup(identity, anonymousSecGroup)) {
oks.add(identity);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment