https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35930 Andreas Jonsson <andreas.jonsson@kreablo.se> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |andreas.jonsson@kreablo.se --- Comment #1 from Andreas Jonsson <andreas.jonsson@kreablo.se> --- This is caused by the changes introduced in bug 30719: # Get available metadata enrichment plugins sub get_metadata_enrichment { my @candidates = Koha::Plugins->new()->GetPlugins({ method => 'provides_api' }); my @services = (); foreach my $plugin(@candidates) { my $supported = $plugin->provides_api(); if ($supported->{type} eq 'search') { push @services, $supported; } } return \@services; } -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.