Skip to content

Commit

Permalink
fix(rf2): minor change to ensure that serialization of merged...
Browse files Browse the repository at this point in the history
...language configuration does not cause issues when updating codesystem
metadata after RF2 import
  • Loading branch information
cmark committed Sep 25, 2024
1 parent 9ba291d commit 796f1f4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ private void updateCodeSystemSettings(final BranchContext context, final Resourc
ResourceRequests.prepareUpdate(resourceUri.getResourceId())
.setSettings(Map.of(
CodeSystem.CommonSettings.LOCALES, currentLocales,
SnomedTerminologyComponentConstants.CODESYSTEM_LANGUAGE_CONFIG_KEY, mergedLanguagesConfiguration.values()
SnomedTerminologyComponentConstants.CODESYSTEM_LANGUAGE_CONFIG_KEY, List.copyOf(mergedLanguagesConfiguration.values())
))
.build(author, String.format("Update '%s' settings based on RF2 import", resourceUri.getResourceId()))
.execute(context.service(IEventBus.class))
Expand Down

0 comments on commit 796f1f4

Please sign in to comment.