Skip to content

Commit

Permalink
Fix loading format from MatType for Sierra
Browse files Browse the repository at this point in the history
  • Loading branch information
mdnoble73 committed May 13, 2024
1 parent 347e49f commit 934d160
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified code/reindexer/reindexer.jar
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public LinkedHashSet<String> getUntranslatedFormatsFromBib(org.marc4j.marc.Recor
if (matTypeSubfield != null) {
String formatValue = matTypeSubfield.getData().trim();
if (indexingProfile.hasTranslation("format", formatValue)) {
formats.add(indexingProfile.translateValue("format", formatValue));
formats.add(formatValue);

}
}
Expand Down

0 comments on commit 934d160

Please sign in to comment.