Skip to content

Commit

Permalink
MOSIP-17363 : fix for name is not getting saved in individual demo de…
Browse files Browse the repository at this point in the history
…dupe table
  • Loading branch information
Monobikash Das authored and Monobikash Das committed Sep 7, 2021
1 parent e816650 commit aa741f9
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import java.time.LocalDateTime;
import java.time.ZoneId;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Map;
import java.util.UUID;
Expand Down Expand Up @@ -228,7 +229,7 @@ public IndividualDemographicDedupe getIdentityKeysAndFetchValuesFromJSON(String
JsonUtil.getJSONObject(regProcessorIdentityJson, MappingJsonConstants.EMAIL),
MappingJsonConstants.VALUE);

fields.add(nameKey);
fields.addAll(Arrays.asList(nameKey.split(",")));
fields.add(dob);
fields.add(gender);
fields.add(email);
Expand Down

0 comments on commit aa741f9

Please sign in to comment.