@@ -, +, @@ --- opac/svc/mana/getSuggestion | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/opac/svc/mana/getSuggestion +++ a/opac/svc/mana/getSuggestion @@ -74,7 +74,8 @@ if ( $local_suggestions and DateTime::Duration->compare( ($now - $timestamp), DU delete $local_suggestions->{timestamp}; delete $local_suggestions->{biblionumber}; foreach my $key ( sort keys %{ $local_suggestions }){ - push @biblios, Koha::Biblios->find( $local_suggestions->{ $key } ); + my $biblio = Koha::Biblios->find( $local_suggestions->{ $key } ); + push @biblios, $biblio->unblessed() if $biblio; } } --