@@ -, +, @@ from crashing when there is an unknown barcode --- offline_circ/list.pl | 1 + 1 file changed, 1 insertion(+) --- a/offline_circ/list.pl +++ a/offline_circ/list.pl @@ -47,6 +47,7 @@ my $operations = GetOfflineOperations; for (@$operations) { my $item = Koha::Items->find({ barcode => $_->{barcode} }); + next unless $item; my $biblio = $item->biblio; $_->{'bibliotitle'} = $biblio->title; $_->{'biblionumber'} = $biblio->biblionumber; --