Skip to content

Commit

Permalink
Merge pull request #1810 from Khuddusshariff0022/1.1.5.5_MOSIP_30470_…
Browse files Browse the repository at this point in the history
…UIN_Generation_failed_Invalid_Input_Parameter

[MOSIP-30470] uin generation failed invalid input parameter
  • Loading branch information
vishwa-vyom authored Dec 20, 2023
2 parents 93adae7 + 0896372 commit 3296100
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -291,10 +291,9 @@ public MessageDTO process(MessageDTO object) {
registrationStatusDto.getRegistrationType(), demographicIdentity,
uinField, description);
if (idResponseDTO.getErrors() == null || idResponseDTO.getErrors().isEmpty()
|| idResponseDTO.getErrors().get(0)
.getErrorCode() != INVALID_INPUT_PARAMETER_ERROR_CODE)
|| !idResponseDTO.getErrors().get(0)
.getErrorCode().equalsIgnoreCase(INVALID_INPUT_PARAMETER_ERROR_CODE))
break;

}
}
boolean isUinAlreadyPresent = isUinAlreadyPresent(idResponseDTO, registrationId);
Expand Down Expand Up @@ -488,6 +487,7 @@ else if (json instanceof JSONArray) {
}
}


/**
* Send id repo with uin.
*
Expand Down

0 comments on commit 3296100

Please sign in to comment.