Skip to content

Commit

Permalink
Merge pull request #489 from bcgov/develop/alex-GRAD2-2580
Browse files Browse the repository at this point in the history
GRAD2-2580
  • Loading branch information
arybakov-cgi authored May 16, 2024
2 parents bf6277f + be708b2 commit 96b84b0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public StudentCredentialDistribution process(StudentCredentialDistribution item)
summaryDTO.setBatchId(batchId);
boolean useSchoolAtGrad = false;
String credentialType = summaryDTO.getCredentialType();
if (StringUtils.containsAnyIgnoreCase(credentialType, "OC", "RC")) {
if (StringUtils.equalsAnyIgnoreCase(credentialType, "OC", "RC")) {
useSchoolAtGrad = true;
}
return restUtils.processDistribution(item, summaryDTO, useSchoolAtGrad);
Expand Down

0 comments on commit 96b84b0

Please sign in to comment.