Skip to content

Commit

Permalink
fixed collection urls in breadcrumbs
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian Alpers committed Sep 19, 2024
1 parent c9c7210 commit a0bb9a2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public List<LabeledLink> getSubLinks() {
// Add collection hierarchy links with the same weight
for (HierarchicalBrowseDcElement collectionElement : collectionElements) {
links.add(new LabeledLink(collectionElement.getLabel(),
new CollectionView(field, () -> Collections.emptyMap()).getCollectionUrl(collectionElement, false),
new CollectionView(field, () -> Collections.emptyMap()).getCollectionUrl(collectionElement, true),
subLinkWeight));
}
} catch (DAOException | PresentationException e) {
Expand Down

0 comments on commit a0bb9a2

Please sign in to comment.