From 7cc12b7af0521602af065a8b5c4defeb72997fd9 Mon Sep 17 00:00:00 2001 From: Dan Briem Date: Fri, 28 May 2021 12:58:27 -0400 Subject: [PATCH] LP#1930088 Angular catalog: metarecord search returns no results This adds a missing param to a call to get_one_record_summary that's necessary after commit c07ce8. To test, perform a search using the Group Formats/Editions checkbox and you should see results. Signed-off-by: Dan Briem Signed-off-by: Michele Morgan Signed-off-by: Galen Charlton --- Open-ILS/src/perlmods/lib/OpenILS/Application/Search/Biblio.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/Search/Biblio.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/Search/Biblio.pm index 5aec63549d..95720a8eeb 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Search/Biblio.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Search/Biblio.pm @@ -3112,7 +3112,7 @@ sub get_one_metarecord_summary { my $bre_id = $meta->master_record; - my $response = get_one_record_summary($e, $org_id, $bre_id); + my $response = get_one_record_summary($self, $e, $org_id, $bre_id); $response->{urls} = get_one_rec_urls($self, $e, $org_id, $bre_id); $response->{metabib_id} = $rec_id; -- 2.11.0