From d0ccc76d16c7186e8c509a99e8b6268b013058ce Mon Sep 17 00:00:00 2001 From: G S Prakash Naidu <146939767+GSPrakashNaidu2662@users.noreply.github.com> Date: Thu, 26 Sep 2024 16:04:04 +0530 Subject: [PATCH] Update label change to nrcId from UIN in the regestrationservice file. (#450) Signed-off-by: G S Prakash Naidu <146939767+GSPrakashNaidu2662@users.noreply.github.com> --- .../clientmanager/service/RegistrationServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/clientmanager/src/main/java/io/mosip/registration/clientmanager/service/RegistrationServiceImpl.java b/android/clientmanager/src/main/java/io/mosip/registration/clientmanager/service/RegistrationServiceImpl.java index 0b43254e..377957a5 100644 --- a/android/clientmanager/src/main/java/io/mosip/registration/clientmanager/service/RegistrationServiceImpl.java +++ b/android/clientmanager/src/main/java/io/mosip/registration/clientmanager/service/RegistrationServiceImpl.java @@ -202,7 +202,7 @@ public void submitRegistrationDto(String makerName) throws Exception { switch (this.registrationDto.getFlowType()) { case "Update": if (this.registrationDto.getDemographics().get(fieldName) != null && (this.registrationDto.getUpdatableFields().contains(fieldName) || - fieldName.equals("UIN"))) + fieldName.equals("nrcId"))) packetWriterService.setField(this.registrationDto.getRId(), fieldName, this.registrationDto.getDemographics().get(fieldName)); break; case "Correction":