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

Merge OpenOLAT 12.1 to OpenOLAT default branch with 9cefeabbaab8b3bfa9f94f0bfce0411d0de1dbd3

parents 548fccdd eb3e892d
No related branches found
No related tags found
No related merge requests found
......@@ -164,7 +164,7 @@ public class ValidationStepForm extends StepFormBasicController {
for(String prop : userPropsToSearch) {
List<Identity> found = userManager.findIdentitiesWithProperty(prop, assessedId);
if(found.size() > 0) {
if(found != null && found.size() > 0) {
// ignore multiple hits, just take the first one
identity = found.get(0);
idToIdentityMap.put(assessedId, 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