LP#1930088 Angular catalog: metarecord search returns no results
authorDan Briem <dbriem@wlsmail.org>
Fri, 28 May 2021 16:58:27 +0000 (12:58 -0400)
committerGalen Charlton <gmc@equinoxOLI.org>
Tue, 8 Jun 2021 15:27:21 +0000 (11:27 -0400)
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 <dbriem@wlsmail.org>
Signed-off-by: Michele Morgan <mmorgan@noblenet.org>
Signed-off-by: Galen Charlton <gmc@equinoxOLI.org>

Open-ILS/src/perlmods/lib/OpenILS/Application/Search/Biblio.pm

index 5aec635..95720a8 100644 (file)
@@ -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;