Skip to content
Snippets Groups Projects
Commit 71de4f5c authored by Michael Simon's avatar Michael Simon
Browse files

NO_STORY set primary email on identity if it is not set

on creation of an email address from an attribute source
parent 53b1c060
No related branches found
No related tags found
No related merge requests found
......@@ -80,6 +80,10 @@ public class IdentityEmailAddressHandler implements Serializable {
entity.setEmailStatus(EmailAddressStatus.FROM_ATTRIBUTE_UNVERIFIED);
entity = dao.persist(entity);
if (identity.getPrimaryEmail() == null) {
identity.setPrimaryEmail(entity);
}
return entity;
}
......
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