Skip to content

Commit

Permalink
Merge branch 'GRAD2-2136' into grad-release
Browse files Browse the repository at this point in the history
  • Loading branch information
chris.ditcher authored and chris.ditcher committed Jan 11, 2024
2 parents 9de7a7e + f4a591a commit 80e0fad
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public void onMessage(Message message) {
String response;
try {
Event event = JsonUtil.getJsonObjectFromString(Event.class, eventString);
UUID stdId = UUID.fromString(event.getEventPayload());
UUID stdId = JsonUtil.getJsonObjectFromString(UUID.class, event.getEventPayload());
GraduationStudentRecord graduationStatus = graduationStatusService.getGraduationStatus(stdId);
response = getResponse(graduationStatus);
} catch (Exception e) {
Expand Down

0 comments on commit 80e0fad

Please sign in to comment.