Skip to content

Commit

Permalink
Update district contact was returning an object with a null districtI…
Browse files Browse the repository at this point in the history
…d and also for nats message payload.
  • Loading branch information
chris.ditcher authored and chris.ditcher committed Jul 29, 2024
1 parent 6ce914c commit 895de5e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ public Pair<DistrictContactEntity, InstituteEvent> updateDistrictContact(Distric
final InstituteEvent instituteEvent = EventUtil.createInstituteEvent(
contact.getCreateUser(),
contact.getUpdateUser(),
JsonUtil.getJsonStringFromObject(DistrictContactMapper.mapper.toStructure(contactEntity)),
JsonUtil.getJsonStringFromObject(DistrictContactMapper.mapper.toStructure(currentContactEntity)),
UPDATE_DISTRICT_CONTACT,
DISTRICT_CONTACT_UPDATED
);
Expand Down

0 comments on commit 895de5e

Please sign in to comment.