Skip to content

Commit

Permalink
Merge branch 'PR-1709-dev' into development
Browse files Browse the repository at this point in the history
# Conflicts:
#	src/main/java/org/folio/ncip/FolioRemoteServiceManager.java
  • Loading branch information
JanisSaldabols committed Aug 20, 2024
2 parents b6cd0ae + dd464b5 commit f88d02c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -755,12 +755,12 @@ public JsonObject requestItem(RequestItemInitiationData initData) throws Excepti

private void addNoteIfNeeded(String agencyId, String requestUuid, String illRequestId, String baseUrl, boolean initProperties) {
try {
agencyId = agencyId == null ? agencyId : agencyId.toLowerCase();
if (initProperties) {
initProperties(agencyId, baseUrl);
}

String noteEnabled = ncipProperties.getProperty(agencyId + ".request.note.enabled");
logger.info("Note enabled: {} for agency {}", noteEnabled, agencyId);
if (Constants.BOOLEAN_TRUE.equalsIgnoreCase(noteEnabled)) {
JsonObject note = new JsonObject();
note.put("domain", Constants.NOTE_DOMAIN_REQUESTS);
Expand Down

0 comments on commit f88d02c

Please sign in to comment.