Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kwahlin committed Feb 26, 2025
1 parent 9229cd5 commit bd0da88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion whelk-core/src/main/groovy/whelk/filter/LinkFinder.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ class LinkFinder {
private void replaceSameAsLinksWithPrimaries(data, List<String> propertyPath) {
if (data instanceof List) {
for (def element : data) {
replaceSameAsLinksWithPrimaries(data, propertyPath)
replaceSameAsLinksWithPrimaries(element, propertyPath)
}
}
if (data instanceof Map) {
Expand Down

0 comments on commit bd0da88

Please sign in to comment.